generated from kitesjs/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "kites-typescript-starter",
"version": "1.0.0",
"description": "Kites TypeScript starter repository",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "ts-node-dev --respawn --transpileOnly ./app.ts",
"start:prod": "node dist/app.js",
"build": "tsc -p tsconfig.build.json",
"lint": "tslint -p tsconfig.json -c tslint.json app.ts \"todo/**/*.ts\" -e \"*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitesjs/typescript-starter.git"
},
"keywords": [
"kitesjs",
"starter"
],
"author": "vunb",
"license": "MIT",
"bugs": {
"url": "https://github.com/kitesjs/typescript-starter/issues"
},
"homepage": "https://github.com/kitesjs/typescript-starter#readme",
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"ts-node-dev": "^1.0.0-pre.40",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"axios": "^0.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.2.0"
},
"dependencies": {
"@kites/common": "^1.1.8",
"@kites/core": "^1.1.8",
"@kites/express": "^1.1.8",
"@kites/rest": "^1.1.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2"
}
}