-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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": "better-rail-server",
"version": "1.0.1",
"description": "Server for Better Rail app",
"main": "index.ts",
"license": "AGPL-3.0",
"dependencies": {
"@lagregance/i18n-js-require": "^4.2.2",
"apns2": "^11.2.0",
"axios": "^1.3.5",
"axios-retry": "^3.4.0",
"date-fns": "^2.29.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"firebase-admin": "^11.7.0",
"lodash": "^4.17.21",
"node-schedule": "^2.1.1",
"redis": "^4.6.5",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-mongodb": "^5.1.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/express": "^4.17.16",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/node-schedule": "^1.3.0",
"@types/uuid": "^9.0.1",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"scripts": {
"dev": "nodemon ./src/index.ts",
"build": "tsc",
"start": "node ./dist/index.js",
"test": "jest"
},
"engines": {
"node": ">= 16"
},
"prettier": {
"printWidth": 130,
"semi": false,
"singleQuote": false,
"trailingComma": "all"
}
}