-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.05 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "SHARING-DONOR-SERVER",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-SHARING-DONOR-SERVER",
"stop": "egg-scripts stop --title=egg-server-SHARING-DONOR-SERVER",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"test": "npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix",
"lint:staged": "lint-staged",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"git-commit": "git-cz",
"git-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"git-changelog-init": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"migrate:new": "egg-sequelize migration:create",
"migrate:up": "egg-sequelize db:migrate",
"migrate:down": "egg-sequelize db:migrate:undo"
},
"dependencies": {
"egg": "^2.2.1",
"egg-scripts": "^2.5.0",
"egg-sequelize": "^3.0.1",
"pg": "^6.2.4",
"pg-hstore": "^2.3.2"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.0.0",
"babel-eslint": "7.2.3",
"commitizen": "^2.9.6",
"egg-bin": "^4.3.5",
"egg-ci": "^1.8.0",
"egg-mock": "^3.14.0",
"egg-validate": "^1.0.0",
"eslint": "^4.11.0",
"eslint-config-egg": "^6.0.0",
"lint-staged": "3.5.1",
"lodash": "^4.17.4",
"pre-commit": "1.2.2",
"snazzy": "^7.0.0",
"standard": "^11.0.0",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.9.0"
},
"lint-staged": {
"*.js": [
"lint:fix",
"git add"
]
},
"pre-commit": "lint:staged",
"standard": {
"parser": "babel-eslint",
"ignore": [
"/run/",
"/test/"
],
"envs": [
"jest",
"browser"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "MIT"
}