-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.16 KB
/
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
33
34
35
36
37
38
{
"name": "express-ts-swagger-docker",
"version": "0.0.2",
"description": "Express.js TypeScript template with Swagger UI and Docker Compose",
"main": "src/main.ts",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/node": "^12.12.28",
"tslint": "^5.20.0",
"tsoa": "^2.5.13",
"typescript": "^3.8.2"
},
"scripts": {
"build:routes": "mkdir -p src/routes && tsoa routes",
"build:swagger": "mkdir -p api && mkdir -p api/dist && tsoa swagger",
"build:ts": "tsc -p src",
"build:all": "npm run build:routes && npm run build:swagger && npm run build:ts",
"server": "node dist/main.js",
"docker:build": "docker build -t angellandros/express-ts .",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aerabi/express-ts-swagger-docker.git"
},
"keywords": [
"expressjs",
"typescript"
],
"author": "Mohammad-Ali A'RÂBI <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/aerabi/express-ts-swagger-docker/issues"
},
"homepage": "https://github.com/aerabi/express-ts-swagger-docker#readme"
}