-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "moment-back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"prisma": {
"seed": "node prisma/seed.js"
},
"scripts": {
"test": "jest",
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"start:dev": "cross-env NODE_ENV=development nodemon src/server.js",
"start:prod": "cross-env NODE_ENV=production nodemon src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.726.1",
"@prisma/client": "^6.3.1",
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.7",
"dotenv-flow": "^4.1.0",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"moment-timezone": "^0.5.47",
"mongodb": "^6.12.0",
"mongoose": "^8.9.5",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nvm": "^0.0.4",
"ws": "^8.18.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prisma": "^6.2.1",
"supertest": "^7.0.0"
}
}