-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 794 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 794 Bytes
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
{
"name": "typescript-express-validation-swagger",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"schema": "node utils/schemaGenerator.js",
"spec": "ts-node utils/swagger.ts",
"swagger": "npm run schema && npm run spec",
"build": "npm run schema && tsc",
"start": "npm run build && node ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.8.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.19",
"swagger-autogen": "^2.21.5",
"swagger-ui-express": "^4.5.0",
"typescript-json-schema": "^0.52.0"
},
"devDependencies": {
"@types/express": "^4.17.13"
}
}