-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "eggdemo",
"version": "1.0.0",
"description": "egg demo project",
"private": true,
"dependencies": {
"basic-auth": "^1.1.0",
"cheerio": "^0.22.0",
"crawler": "^1.0.5",
"crypto": "0.0.3",
"egg": "^1.0.0",
"egg-cors": "^1.1.0",
"egg-elasticsearch": "^1.0.0",
"egg-mongoose": "^1.1.1",
"egg-multipart": "^1.4.0",
"egg-mysql": "^2.0.0",
"egg-passport": "^1.0.0",
"egg-redis": "^1.0.1",
"egg-schedule": "^2.3.0",
"egg-security": "^1.9.0",
"egg-session-redis": "^1.0.0",
"egg-validate": "^1.0.0",
"egg-view-nunjucks": "^2.0.0",
"eventproxy": "^0.3.5",
"formidable": "^1.1.1",
"global": "^4.3.2",
"jsdom": "^11.0.0",
"lodash": "^4.17.4",
"multiparty": "^4.1.3",
"request": "^2.81.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"autod": "^2.7.1",
"egg-bin": "^3.1.0",
"egg-ci": "^1.5.0",
"egg-mock": "^3.2.0",
"eslint": "^3.18.0",
"eslint-config-egg": "^3.2.0",
"supertest": "^3.0.0",
"webstorm-disable-index": "^1.1.2"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "node index.js",
"dev": "egg-bin dev",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"debug": "egg-bin dev --debug"
},
"ci": {
"version": "6"
},
"repository": {
"type": "git",
"url": ""
},
"author": "five6",
"license": "MIT",
"main": "index.js",
"directories": {
"test": "test"
},
"keywords": [
"egg"
]
}