-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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": "hackernews-async-ts",
"version": "1.0.0",
"description": "hackernews showcase using typescript && egg",
"private": true,
"egg": {
"typescript": true
},
"scripts": {
"start": "egg-scripts start",
"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": "tsc -p tsconfig.json",
"ci": "npm run lint && npm run cov && npm run tsc",
"lint": "eslint .",
"clean": "tsc -b --clean"
},
"dependencies": {
"egg": "^3.11.0",
"egg-mongoose": "^3.3.1",
"egg-scripts": "^2.17.0",
"egg-view-nunjucks": "^2.3.0",
"handlebars": "^4.7.7",
"moment": "^2.22.0",
"puppeteer": "^20.5.0",
"util": "^0.12.5"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.1.0",
"@types/cheerio": "^0.22.1",
"@types/mocha": "^10.0.1",
"cheerio": "^1.0.0-rc.2",
"egg-bin": "^5.9.0",
"egg-logger": "^3.3.0",
"egg-mock": "^5.5.0",
"eslint": "^8.31.0",
"eslint-config-egg": "^12.1.0",
"typescript": "^4.9.4",
"@types/node": "^20.4.0"
},
"engines": {
"node": ">=16.0.0"
}
}