-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "brushwork_be",
"version": "1.0.0",
"main": "/Users/malibu/Desktop/brushwork/backend/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/UMC-BRUSHWORK/backend.git"
},
"author": "silverage <sep.non2@gmail.com>",
"scripts": {
"start:dev": "nodemon --exec babel-node index.js",
"start:dist": "webpack --mode production & node ./dist/main.js & ",
"start": "node main.js",
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development",
"copy": "copy ./dist/swagger.json ./",
"test:dist": "webpack --mode development & node ./dist/main.js"
},
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1532.0",
"axios": "^1.7.2",
"babel-loader": "^9.1.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"busboy": "^1.6.0",
"cookie-parser": "^1.4.6",
"copy": "^0.3.2",
"copy-webpack-plugin": "^12.0.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-session": "^1.17.3",
"generate-function": "^2.3.1",
"google-auth-library": "^9.11.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"moment-timezone": "^0.5.44",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^3.6.5",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.9",
"passport": "^0.7.0",
"passport-kakao": "^1.0.1",
"socket.io": "^4.7.4",
"swagger-jsdoc": "^6.2.8",
"swagger-jsdoc-webpack-plugin": "^2.1.0",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.7",
"nodemon": "^3.0.2",
"swagger-cli": "^4.0.4",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"yaml-loader": "^0.8.0"
}
}