-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
52
53
54
{
"name": "zerofit_nodejs_server",
"version": "2.0",
"description": "zerofit_nodejs_server",
"main": "server.js",
"scripts": {
"prod": "cross-env NODE_ENV=production PORT=10103 pm2 start server.js",
"dev": "cross-env NODE_ENV=development PORT=10104 nodemon server.js",
"test": "cross-env NODE_ENV=test PORT=10105 nodemon server.js",
"jest": "jest main.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/InhaZeroFit/ZEROFIT_NodeJS_Server.git"
},
"author": "KimJunHo",
"license": "ISC",
"bugs": {
"url": "https://github.com/InhaZeroFit/ZEROFIT_NodeJS_Server/issue"
},
"homepage": "https://github.com/InhaZeroFit/ZEROFIT_NodeJS_Server#readme",
"dependencies": {
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"fs-extra": "^11.3.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.5",
"nodemon": "^3.1.7",
"nunjucks": "^3.2.4",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pm2": "^5.4.3",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.2",
"winston": "^3.17.0"
},
"devDependencies": {
"eslint": "^9.19.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"supertest": "^7.0.0"
}
}