-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 920 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 920 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
32
33
34
35
36
37
38
39
40
{
"name": "ts-api",
"version": "3.4.7",
"description": "Create documented REST API using controllers and interfaces in typescript",
"main": "dist",
"types": "dist",
"repository": {
"type": "git",
"url": "git@github.com:waTeim/ts-api.git"
},
"dependencies": {
"@types/node": "^13.5.0",
"@types/swagger-ui-express": "^3.0.0",
"ajv": "^6.8.1",
"bluebird": "^3.5.1",
"commander": "^2.15.1",
"doctrine": "^2.1.0",
"express": "^4.16.3",
"find-root": "^1.1.0",
"glob": "^7.1.2",
"mkdirp": "^0.5.1",
"reflect-metadata": "^0.1.12",
"swagger-ui-express": "^4.0.1",
"typescript": "3.7.5",
"uuid": "^3.3.2"
},
"scripts": {
"test": "mocha --reporter spec",
"build": "tsc"
},
"bin": {
"cg": "./bin/cg"
},
"author": "Jeff Waller",
"license": "Apache 2.0",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}