-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) ยท 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) ยท 1.14 KB
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
{
"name": "twc_be_node",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"prisma:generate": "npx prisma generate"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.738.0",
"@prisma/client": "^6.2.1",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.46",
"multer-s3": "^3.0.1",
"node-fetch": "^2.7.0",
"path": "^0.12.7",
"pg": "^8.13.1",
"pg-pool": "^3.7.0",
"redis": "^4.7.0",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.9",
"prisma": "^6.2.1",
"supertest": "^7.0.0"
}
}