-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.01 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "private-cloud",
"version": "1.0.0",
"description": "npm项目文件,执行dev为开发环境build为测试环境",
"author": "chargerlink-f2e",
"private": true,
"scripts": {
"dev": "concurrently --kill-others \"better-npm-run dev\" \"better-npm-run mock\"",
"build": "node build/build.js",
"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs",
"mock": "node ./service/mock/mockApi.js --watch ./service/mock"
},
"betterScripts": {
"dev": {
"command": "node build/dev-server.js",
"env": {
"NODE_ENV": "development"
}
},
"mock": {
"command": "nodemon ./service/mock/mockApi.js --watch ./service/mock"
},
"build": {
"command": "node build/build.js",
"env": {
"NODE_ENV": "production"
}
}
},
"dependencies": {
"babel-runtime": "^6.0.0",
"jquery": "^3.1.0",
"vue": "^1.0.21",
"vue-upload-component": "^0.3.8"
},
"devDependencies": {
"ansi-html": "0.0.5",
"ansi-regex": "^2.0.0",
"babel-core": "^6.0.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-register": "^6.0.0",
"better-npm-run": "0.0.11",
"bootstrap-loader": "^1.2.0-beta.1",
"bootstrap-sass": "^3.3.7",
"bourbon": "^4.2.7",
"clipboard": "^1.6.1",
"component-emitter": "^1.2.1",
"connect-history-api-fallback": "^1.1.0",
"core-js": "^2.4.1",
"css-loader": "^0.23.0",
"echarts": "3.2.3",
"eslint": "^2.10.2",
"eslint-config-standard": "^5.1.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.4",
"font-awesome": "^4.6.3",
"font-awesome-sass-loader": "^1.0.2",
"function-bind": "^1.0.2",
"html-entities": "^1.2.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.8.1",
"http-proxy-middleware": "^0.12.0",
"json-loader": "^0.5.4",
"node-sass": "^3.9.3",
"normalize.scss": "^0.1.0",
"nprogress": "^0.2.0",
"ora": "^0.2.0",
"resolve-url": "^0.2.1",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"shelljs": "^0.6.0",
"strip-ansi": "^3.0.1",
"style-loader": "^0.13.1",
"superagent": "^2.2.0",
"url-loader": "^0.5.7",
"vue": "^1.0.26",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.0.0",
"vue-loader": "^8.3.0",
"vue-router": "^0.7.13",
"vue-strap": "1.1.15",
"vue-style-loader": "^1.0.0",
"vue-upload-component": "^2.0.0-beta",
"vuex": "^1.0.0-rc.2",
"webpack": "^1.12.2",
"webpack-dashboard": "^0.1.8",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0",
"webpack-merge": "^0.8.3",
"zrender": "3.1.3"
}
}