-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 940 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 940 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
38
39
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run lint:fix && npx nodemon src/index.js",
"format": "prettier --write .",
"lint": "eslint . ",
"lint:fix": "eslint . --fix "
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^6.0.0",
"bull": "^4.16.5",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"express": "^5.1.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.3",
"mongoose": "^8.16.0",
"nodemon": "^3.1.10",
"socket.io": "^4.8.1",
"uuid": "^13.0.0",
"zod": "^4.0.10"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"prettier": "^3.5.3"
}
}