-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
32 lines (32 loc) · 894 Bytes
/
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
{
"name": "01-basic",
"version": "0.0.1",
"description": "",
"main": "app.js",
"scripts": {
"start": "npm run build && node ./build/app.js",
"start:watch": "npm run build:watch && nodemon ./build/app.js",
"build": "node_modules/.bin/tsc",
"build:watch": "npm run build -- -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"class-transformer": "0.4.0",
"class-validator": "0.14.0",
"class-validator-jsonschema": "^3.0.0",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "0.9.0",
"routing-controllers-openapi": "3.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "~4.17.7",
"@types/swagger-ui-express": "^4.1.2",
"nodemon": "^1.18.3",
"typescript": "^4.2.3"
}
}