-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 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
{
"name": "bookjam",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"api-docs": "swagger-cli bundle ./src/swagger/openapi.yaml --outfile ./src/swagger/swagger.yaml --type yaml",
"test": "echo \"Error: no test specified\" && exit 1",
"predev": "npm run api-docs",
"dev": "nodemon",
"prestart": "npm run api-docs",
"start": "node index.js",
"build": "npx babel index.js -d dist && npx babel src -d dist/src && npx babel config -d dist/config"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.370.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.1",
"jwks-rsa": "^3.1.0",
"jwt-decode": "^4.0.0",
"korean-regexp": "^1.0.11",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^3.5.1",
"nodemailer": "^6.9.12",
"swagger-cli": "^4.0.4",
"swagger-ui-express": "^5.0.0",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1",
"yaml": "^2.4.1"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/preset-env": "^7.22.9",
"nodemon": "^2.0.22"
}
}