-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.8 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "typescript-rest-boilerplate",
"version": "0.0.1",
"description": "Boilerplate project for awesome typescript-rest library",
"repository": "https://github.com/vrudikov/typescript-rest-boilerplate.git",
"license": "MIT",
"scripts": {
"start": "./node_modules/.bin/ts-node src/server.ts",
"start:cluster": "./node_modules/.bin/ts-node src/cluster.ts",
"build": "npm run clean && tsc && npm run swagger",
"clean": "rimraf dist",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"format": "tsfmt -r",
"pretest": "cross-env NODE_ENV=test npm build && npm run lint",
"test": "cross-env NODE_ENV=test mocha",
"test:coverage": "nyc npm test",
"swagger": "swaggerGen -c ./swagger.config.json",
"tsc": "tsc",
"doc": "typedoc --out ./doc/ --name 'Typescript-rest-Boilerplate' --readme ./README.MD --module commonjs --target ES6 --includeDeclarations --excludePrivate --excludeExternals ./src"
},
"engines":{
"node":"8.9.3"
},
"dependencies": {
"typescript-rest": "^1.1.1",
"typescript-rest-swagger": "0.0.10"
},
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/cors": "^2.8.1",
"@types/mocha": "^2.2.41",
"@types/request": "0.0.43",
"chai": "^3.5.0",
"cross-env": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"nyc": "^10.3.2",
"request": "^2.81.0",
"rimraf": "^2.6.1",
"source-map-support": "^0.4.15",
"ts-node": "^3.3.0",
"tslint": "~5.4.3",
"typedoc": "^0.5.10",
"typescript": "~2.3.4",
"typescript-formatter": "^5.2.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}