-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 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
55
{
"name": "basic-rest-api",
"version": "1.0.0",
"description": "Example basic rest api",
"main": "index.js",
"scripts": {
"clean": "rimraf '{src,test}/**/*.{js,js.map}'",
"test:coverage": "cross-env NODE_ENV=test nyc mocha --exit",
"test:lint": "tslint --project tsconfig.json",
"test": "npm run clean && npm run lint && npm run test:coverage",
"tsc": "tsc --project tsconfig.json",
"build": "npm run tsc",
"lint": "tslint -c tslint.json --project tsconfig.json",
"dev": "ts-node-dev --respawn --transpileOnly ./src/server.ts",
"start": "ts-node src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@tsed/common": "^5.18.1",
"@tsed/core": "^5.18.1",
"@tsed/di": "^5.18.1",
"@tsed/swagger": "^5.18.1",
"@tsed/typeorm": "^5.18.1",
"@types/swagger-schema-official": "^2.0.16",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"sqlite3": "^4.0.8",
"ts-httpexceptions": "^4.1.0",
"typeorm": "^0.2.17"
},
"devDependencies": {
"@tsed/testing": "^5.18.1",
"@types/chai": "^4.1.7",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.4",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"supertest": "^4.0.2",
"ts-node": "^8.2.0",
"ts-node-dev": "^1.0.0-pre.39",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}