-
Notifications
You must be signed in to change notification settings - Fork 731
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "egg-example-hackernews-async-ts",
"version": "1.0.0",
"description": "hackernews showcase using async/await for egg",
"private": true,
"dependencies": {
"egg": "^2.0.0",
"egg-di": "^1.0.0",
"egg-view-nunjucks": "^2.1.4",
"moment": "^2.19.4",
"source-map-support": "^0.5.0",
"tslib": "^1.8.1",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.1",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/supertest": "^2.0.0",
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"cheerio": "^1.0.0-rc.2",
"egg-bin": "^4.3.7",
"egg-mock": "^3.14.0",
"rimraf": "^2.6.1",
"tslint": "^4.0.0"
},
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rimraf app/**/*.{js,map} test/**/*.{js,map} config/**/*.{js,map}",
"tsc": "tsc -p tsconfig.json",
"tsc:w": "tsc -p tsconfig.json -w",
"debug": "egg-bin debug",
"dev": "egg-bin dev",
"test": "npm run tsc && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "tslint .",
"ci": "npm run lint && npm run cov",
"autod": "autod"
}
}