-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "ui369server",
"version": "1.0.0",
"description": "node, mongo, react, restful",
"main": "app.js",
"scripts": {
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js",
"test": "mocha --recursive ./test"
},
"prisma": {
"seed": "ts-node ./src/stores/prisma/seed.ts"
},
"author": "UI369",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.3.1",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"csurf": "^1.11.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"install": "^0.13.0",
"mongoose": "^7.3.1",
"morgan": "^1.10.0",
"papaparse": "^5.4.1",
"pg": "^8.11.3",
"pg-promise": "^11.5.4",
"stripe": "^13.10.0"
},
"devDependencies": {
"@types/node": "^20.7.0",
"@types/papaparse": "^5.3.10",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"prisma": "^5.3.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}