-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "api-back",
"version": "1.0.0",
"description": "Api definition project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"routes": "tsoa routes && tsoa spec",
"build": "npm-run-all clean lint tsc routes",
"dev:start": "npm-run-all build start",
"start": "node dist/src/server.js",
"prewatch-and-run": "npm-run-all lint routes",
"watch-and-run": "ts-node-dev --notify --respawn -- src/server.ts",
"dev": "npm run watch-and-run",
"spec": "tsoa spec"
},
"author": "Abelium",
"license": "ISC",
"dependencies": {
"@types/uuid": "^8.3.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"multer": "^1.4.2",
"swagger-ui-express": "^4.1.5",
"tsoa": "^3.4.0",
"typescript-ioc": "^3.2.2",
"uuid": "^8.3.2",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/helmet": "^4.0.0",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.14",
"@types/swagger-ui-express": "^4.1.2",
"node-notifier": "^9.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
}
}