-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 744 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 744 Bytes
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
{
"name": "hackernews",
"version": "1.0.0",
"description": "hackernews showcase using async/await for egg",
"keywords": [],
"author": "filip.vucemilovic.grgic@gmail.com",
"license": "MIT",
"private": "true",
"engines": {
"node": ">=8.0"
},
"scripts": {
"dev": "egg-bin dev",
"test": "npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
},
"dependencies": {
"egg": "^3.15.0",
"egg-view-nunjucks": "^2.3.0",
"moment": "^2.29.4"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.12",
"egg-bin": "^6.4.0",
"egg-mock": "^5.10.6",
"eslint": "^8.39.0",
"eslint-config-egg": "^12.2.1"
}
}