-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
50
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development npx nodemon ./server",
"client-dev": "cd client && npm run dev",
"stop": "fuser -n tcp -k 8080 && fuser -n tcp -k 5173",
"start": "cross-env NODE_ENV=production node ./server"
},
"author": "",
"license": "ISC",
"dependencies": {
"multer": "^1.4.5-lts.1",
"@mui/lab": "^5.0.0-alpha.146",
"axios": "^1.5.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.18.2",
"joi": "^17.10.1",
"joy": "^0.1.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.1.0",
"mongoose": "^7.5.1",
"morgan": "^1.10.0",
"prettier": "^3.0.3",
"socket.io": "^4.7.2"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"@types/multer": "^1.4.7",
"supertest": "^6.3.3"
}
}