This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "lottery",
"version": "1.0.0",
"description": "A lottery application",
"scripts": {
"dev": "egg-bin dev",
"start": "egg-scripts start --daemon",
"debug": "egg-bin debug",
"clean": "easy clean all",
"build": "easy build prod",
"lint": "eslint .",
"fix": "eslint --fix .",
"create_database": "npx sequelize db:create",
"migrate": "npx sequelize db:migrate",
"seed": "npx sequelize db:seed:all"
},
"dependencies": {
"axios": "^0.21.1",
"cross-env": "^5.0.0",
"egg": "^2.1.0",
"egg-bin": "^4.3.7",
"egg-cors": "^2.0.0",
"egg-logger": "^1.5.0",
"egg-scripts": "^2.5.1",
"egg-validate": "^1.0.0",
"egg-view-vue-ssr": "^3.2.0",
"extend": "~3.0.0",
"lodash": "^4.17.4",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"mockjs": "^1.0.1-beta3",
"mysql2": "^2.0.0",
"shortid": "^2.2.8",
"showdown": "^1.8.6",
"simplemde": "^1.11.2",
"vue": "^2.5.0",
"vue-hot-reload-api": "^2.1.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@easy-team/easywebpack-cli": "^4.0.0",
"@easy-team/easywebpack-vue": "^4.0.0",
"babel-plugin-component": "^1.1.1",
"copy-webpack-plugin": "^5.0.4",
"egg-logview": "^1.0.0",
"egg-sequelize": "^5.2.0",
"egg-webpack": "^4.4.1",
"egg-webpack-vue": "^2.0.0",
"eslint": "^4.19.1",
"eslint-config-egg": "^5.0.0",
"eslint-plugin-vue": "^4.4.0",
"ip": "^1.1.5",
"sequelize-cli": "^5.5.1"
},
"engines": {
"node": ">=8.0.0"
},
"repository": "http://gitlab.bdachina.net/operation-group/lottery",
"author": "jimcheung <[email protected]>",
"license": "MIT"
}