-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "backend-template",
"version": "1.0.0",
"description": "Template for server",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon --exec babel-node index.js",
"start:dist": "webpack --mode production & node ./dist/main.js",
"start": "node main.cjs"
},
"author": "",
"type": "module",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1668.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.2",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"http-status-codes": "^2.3.0",
"iamport": "^0.3.4",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.45",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^3.11.0",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-kakao": "^1.0.1",
"passport-local": "^1.0.0",
"socket.io": "^4.7.5",
"swagger-cli": "^4.0.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.15",
"@babel/preset-env": "^7.25.3",
"@babel/register": "^7.24.6",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}