-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 983 Bytes
/
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
{
"name": "scratch-pay",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"server": "nodemon --exec ts-node src/server.ts",
"build": "tsc -p .",
"start": "node build/src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/redis": "^4.0.11",
"axios": "^1.3.5",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dot-env": "^0.0.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^7.0.1",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.1",
"redis": "^4.6.5"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}