-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "backend",
"version": "1.0.0",
"description": "백엔드 서비스 프로젝트",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "prisma generate",
"start": "node dist/index.js",
"dev": "npm run generate && nodemon --exec babel-node src/index.js",
"build": "webpack --config webpack.config.js",
"swagger": "npx swagger-autogen --output ./swagger-output.json ./src/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.8.2",
"axios": "^1.9.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.14.1",
"node-cron": "^4.0.7",
"prisma": "^6.7.0",
"recharts": "2.15.3",
"socket.io": "^4.8.1",
"socket.io-client": "4.8.1",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.3",
"@babel/node": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"babel-loader": "^10.0.0",
"nodemon": "^3.1.10",
"prisma": "^6.8.2",
"swagger-autogen": "^2.23.7",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"keywords": []
}