-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.77 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
{
"name": "coldplay",
"version": "1.0.0",
"description": "webpack多页面项目脚手架",
"scripts": {
"dev": "cross-env NODE_ENV=development node build/velocity.server.js",
"build": "cross-env NODE_ENV=production node build/build.js",
"test": "cross-env NODE_ENV=production node build/webpack.test.conf.js",
"mocklint": "node ./node_modules/mocklint/index.js -- ./src/mock/*/*.*",
"eslint": "eslint --ext .js src",
"precommit": "npm run eslint && npm run mocklint",
"build:report": "cross-env NODE_ENV=production webpack --config build/webpack.prod.conf.js --json > compilation-stats.json"
},
"keywords": [
"webpack",
"velocity"
],
"author": "shen-zhao <[email protected]>",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.0.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^0.1.19",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.5",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.18.0",
"husky": "^0.14.3",
"imagemin-webpack-plugin": "^2.2.0",
"json5": "^1.0.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"mocklint": "^0.1.2",
"node-notifier": "^5.2.1",
"node-sass": "^4.9.2",
"opn": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"ora": "^3.0.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.6",
"postcss-url": "^7.3.2",
"sass-loader": "^7.0.3",
"semver": "^5.5.0",
"serve-index": "^1.9.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"validate_filename": "^0.2.1",
"velocityjs": "^1.1.1",
"vinyl": "^2.2.0",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.5",
"webpack-hot-middleware": "^2.22.3",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"accounting": "^0.4.1",
"art-template": "^4.12.2",
"echarts": "^4.1.0",
"jquery": "^1.12.4"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 4.0.0"
}
}