-
Notifications
You must be signed in to change notification settings - Fork 3
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": "monkeyreading-server",
"version": "1.0.0",
"description": "monkeyreading-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": "",
"license": "ISC",
"type": "module",
"dependencies": {
"aws-sdk": "^2.1550.0",
"axios": "^1.6.5",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.2",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.45",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^3.6.1",
"passport": "^0.7.0",
"passport-kakao": "^1.0.1",
"passport-local": "^1.0.0",
"swagger-cli": "^4.0.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.15",
"@babel/preset-env": "^7.23.8",
"@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"
}
}