-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "egg-ts-boilerplate",
"version": "1.1.0",
"description": "Boilerplate for Egg.js app using TypeScript.",
"egg": {
"typescript": true,
"require": [
"egg-ts-helper/register"
]
},
"dependencies": {
"egg": "^2.14.2",
"egg-mongo-native": "^3.3.0",
"egg-scripts": "^2.11.0"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/supertest": "^2.0.7",
"egg-bin": "^4.10.0",
"egg-mock": "^3.21.0",
"egg-ts-helper": "^1.20.0",
"tslib": "^1.9.3",
"tslint": "^5.12.1",
"typescript": "^3.2.2"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-egg-ts-boilerplate",
"stop": "egg-scripts stop",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"test-local": "egg-bin test",
"test": "npm run lint -- --fix && npm run test-local",
"cov": "egg-bin cov",
"tsc": "ets && tsc -p tsconfig.json",
"ci": "npm run lint && npm run cov",
"lint": "tslint -c tslint.json --project .",
"clean": "ets clean"
},
"ci": {
"version": "8, 10"
},
"repository": {
"type": "git",
"url": "git@github.com:brickyang/egg-ts-boilerplate.git"
},
"author": "brick <brick.c.yang@gmail.com>",
"license": "MIT"
}