-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "eggjs-realworld-example-app",
"version": "1.0.0",
"description": "Real World Egg.js + Mysql backend implementations",
"private": true,
"dependencies": {
"bcryptjs": "^2.4.3",
"egg": "^2.6.1",
"egg-cors": "^2.0.0",
"egg-jwt": "^3.0.0",
"egg-scripts": "^2.6.0",
"egg-sequelize": "^3.1.3",
"egg-validate": "^1.0.0",
"mysql2": "^1.5.3"
},
"devDependencies": {
"all-contributors-cli": "^4.11.1",
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"babel-eslint": "^8.2.3",
"egg-bin": "^4.6.3",
"egg-ci": "^1.8.0",
"egg-mock": "^3.17.0",
"eslint": "^4.19.1",
"eslint-config-egg": "^7.0.0",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"deploy": "egg-scripts start --daemon --title=egg-server-eggjs-realworld-example-app",
"start": "egg-scripts start --title=egg-server-eggjs-realworld-example-app",
"stop": "egg-scripts stop --title=egg-server-eggjs-realworld-example-app",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"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",
"migrate:new": "egg-sequelize migration:create",
"migrate:up": "egg-sequelize db:migrate",
"migrate:down": "egg-sequelize db:migrate:undo",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": ""
},
"author": "sinchang <sinchangwen@gmail.com>",
"license": "MIT"
}