-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.58 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.58 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
67
68
69
70
71
72
73
{
"name": "express-code-generator",
"version": "1.0.0",
"description": "OpenAPI/Swagger 명세서로부터 모듈식 Express.js API 프로젝트를 생성하는 도구",
"main": "src/app.js",
"type": "commonjs",
"bin": {
"express-gen": "./bin/cli.js"
},
"files": [
"bin/",
"src/",
"README.md"
],
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.js\""
},
"keywords": [
"express",
"generator",
"swagger",
"openapi",
"api",
"code-generator",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^4.1.2",
"commander": "^9.4.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"handlebars": "^4.7.7",
"helmet": "^7.0.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.1.0",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"sequelize": "^6.31.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=14.0.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}