-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.89 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "express-sequelize-typescript",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"debug": "npm run build && npm run watch-debug",
"generate:script": "node -r dotenv/config dist/scripts.js generateScript",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"repl": "node -r dotenv/config --experimental-repl-await",
"serve": "node -r dotenv/config dist/server.js",
"serve-debug": "nodemon --inspect dist/server.js",
"start": "node -r dotenv/config dist/server.js",
"start:w": "node -r dotenv/config dist/worker.js",
"test": "jest --forceExit --verbose",
"test:coverage": "jest --forceExit --coverage --verbose",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon -r dotenv/config dist/server.js",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w"
},
"dependencies": {
"@admin-bro/express": "^3.0.1",
"@admin-bro/sequelize": "^1.1.1",
"admin-bro": "^3.3.1",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"chalk": "^4.1.0",
"connect-session-sequelize": "^7.0.3",
"cookie-parser": "^1.4.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "~2.6.1",
"express": "^4.16.4",
"express-formidable": "^1.2.0",
"express-session": "^1.17.1",
"http-errors": "^1.6.3",
"lodash": "^4.17.20",
"morgan": "~1.9.1",
"node-cron": "^2.0.3",
"node-pagerduty": "^1.3.4",
"node-telegram-bot-api": "^0.52.0",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"recharts": "^1.8.5",
"sequelize": "^6.3.5",
"sequelize-cli": "git+https://github.com/JSRossiter/sequelize-cli-typescript.git",
"split": "^1.0.1",
"through": "^2.3.8",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/eslint": "^7.2.2",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.14",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.2",
"@types/node-cron": "^2.0.3",
"@types/node-telegram-bot-api": "^0.51.1",
"@types/sequelize": "^4.28.9",
"@types/split": "^1.0.0",
"@types/through": "0.0.30",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.21.4",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "2.1.1",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}