-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "discord-bot-playground",
"version": "1.0.0",
"description": "Discord bootstrap",
"main": "index.js",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "cross-env NODE_ENV=production env-cmd -f ./.env node'src/**/*.ts' --exec ts-node src/index.ts",
"dev": "npm run build:dev",
"build:dev": "cross-env NODE_ENV=development env-cmd -f ./.env nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"tsc": "tsc",
"lint": "tsc --noEmit && eslint */**/*.{js,ts,tsx} --quiet --fix"
},
"author": "Troy Anderson",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/bluebird": "^3.5.29",
"@types/node": "^13.13.2",
"@types/nodemailer": "^6.2.2",
"@types/nodemailer-direct-transport": "^1.0.31",
"@types/nodemailer-smtp-transport": "^2.7.4",
"axios": "^0.19.2",
"cross-env": "^7.0.2",
"discord.js": "^11.5.1",
"env-cmd": "^10.0.1",
"googleapis": "^45.0.0",
"nodemailer": "^6.4.1",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
}
}