-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
{
"name": "egg-boilerplate-mp",
"version": "1.0.8",
"description": "boilerplate for egg quickstart",
"keywords": [
"egg",
"egg-framework",
"egg-boilerplate"
],
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-boilerplate",
"ci": "npm run lint && npm run ci-boilerplate",
"test-boilerplate": "npm run build && npm run install-deps && cd dist && npm test",
"ci-boilerplate": "npm run build && npm run install-deps && cd dist && npm run ci",
"clean": "rm -rf boilerplate/.idea boilerplate/logs boilerplate/node_modules boilerplate/run",
"build": "npm run clean && egg-init dist --force --silent --template=./",
"install-deps": "cd dist && npm i autod-egg && ../node_modules/.bin/autod && npm i"
},
"homepage": "https://github.com/unclexiao/egg-boilerplate-mp",
"bugs": "https://github.com/unclexiao/egg-boilerplate-mp/issues",
"repository": {
"type": "git",
"url": "git@github.com:unclexiao/egg-boilerplate-mp.git"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg-ci": "^1.13.0",
"egg-init": "^1.17.2",
"eslint": "^5.13.0",
"eslint-config-egg": "^7.1.0",
"npminstall": "^3.20.2",
"webstorm-disable-index": "^1.2.0"
},
"ci": {
"version": "8"
},
"dependencies": {},
"author": "unclexiao <xh449129722@gmail.com> (https://www.unclexiao.com/)",
"license": "MIT"
}