-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 889 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 889 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/index.js",
"test": "cross-env NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.0.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^8.16.1",
"multer": "^2.0.2",
"mysql2": "^3.15.3",
"nanoid": "^5.1.6",
"nodemon": "^3.1.11",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^4.2.1"
},
"devDependencies": {
"cross-env": "^10.1.0",
"jest": "^30.2.0",
"supertest": "^7.1.4"
}
}