-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.04 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "discordinator",
"license": "GPL-3.0-only",
"scripts": {
"start": "node build/app.js",
"build": "tsc",
"dev": "nodemon -V -w './**/*.ts' -i './**/*.spec.ts' -x 'ts-node' app.ts",
"eslint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"prettier": "prettier --write '*/**/*.{js,ts}' --loglevel silent",
"lint": "yarn eslint && yarn prettier",
"generate:token": "ts-node ./bin/generateAccessToken.ts --audience"
},
"dependencies": {
"@sentry/node": "^5.21.3",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"camel-case": "^4.1.1",
"chalk": "^4.1.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.0",
"pg": "^7.3.0",
"pluralize": "^8.0.0",
"reflect-metadata": "^0.1.10",
"routing-controllers": "^0.9.0-alpha.4",
"snake-case": "^3.0.3",
"typeorm": "0.2.25",
"typeorm-routing-controllers-extensions": "^0.2.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"@rezonant/discord.js-typings": "^10.0.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.6",
"@types/multer": "^1.4.3",
"@types/node": "^8.0.29",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"module-alias": "^2.2.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "3.3.0",
"typescript": "^3.9.5"
},
"_moduleAliases": {
"~": "build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/**/*.{js,ts}": [
"eslint --fix --quiet",
"prettier --write --loglevel silent"
]
}
}