-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.52 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.52 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "example",
"version": "1.0.0",
"description": "example",
"private": true,
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"egg": "^1.7.0",
"egg-mysql": "^3.0.0",
"egg-redis": "^1.0.2",
"egg-scripts": "^1.2.0",
"egg-sequelize": "^3.1.0",
"egg-socket.io": "^4.0.1",
"egg-validate": "^1.0.0",
"egg-view-nunjucks": "^2.1.4",
"lodash": "^4.17.4",
"mocha": "^3.5.3",
"mysql2": "^1.4.2",
"node-sass": "^4.6.1",
"request-promise": "^4.2.2",
"uuid": "^3.1.0",
"verror": "^1.10.0"
},
"devDependencies": {
"autod": "^2.8.0",
"autod-egg": "^1.0.0",
"axios": "^0.17.1",
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.0.0",
"babel-plugin-import": "^1.6.2",
"babel-plugin-transform-runtime": "^6.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.0.2",
"clean-webpack-plugin": "",
"css-loader": "^0.28.7",
"egg-bin": "^3.4.0",
"egg-ci": "^1.6.0",
"egg-mock": "^3.7.0",
"egg-webpack": "^3.0.1",
"eslint": "^3.19.0",
"eslint-config-egg": "^4.2.0",
"extract-text-webpack-plugin": "",
"file-loader": "^1.1.5",
"glob": "^7.1.2",
"html-webpack-plugin": "",
"iview": "^2.7.3",
"moment": "^2.18.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.9",
"sass-loader": "^6.0.3",
"socket.io-client": "^2.0.4",
"style-loader": "^0.16.1",
"vue": "^2.5.3",
"vue-axios": "^2.0.2",
"vue-loader": "^13.5.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.3",
"vuex": "^3.0.1",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1",
"webpack-merge": "^4.1.1",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "egg-scripts start",
"stop": "egg-scripts stop",
"dev": "egg-bin dev",
"debug": "egg-bin debug",
"build": "webpack --config build/webpack.prod.js",
"watch": "webpack --config build/webpack.dev.js -w",
"report": "egg-bin cov",
"test": "set NODE_ENV=test&&egg-bin test",
"cov": "nyc npm test && nyc check-coverage --lines 95 --functions 95 --branches 95 egg-bin test",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"commitmsg": "validate-commit-msg"
},
"ci": {
"version": "6, 8"
},
"repository": {
"type": "git",
"url": ""
},
"pre-commit": [
"test"
],
"author": "leo",
"license": "MIT"
}