-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.64 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
{
"name": "mini-app-template",
"version": "1.0.0",
"description": "一个用于展示小项目的脚手架 可以自动处理 js css 的功能 修改 src 中的文件会进行热更新",
"scripts": {
"build": "cross-env NODE_ENV=production node ./build/build.js",
"dev:new": "cross-env NODE_ENV=production node ./build/build.js",
"dev:old": "webpack-dev-server --inline --progress --config build/webpack.config.js",
"start": "npm run build"
},
"author": "jsjzh <kimimi_king@163.com>",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.0.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-notifier": "^5.2.1",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^3.0.0",
"postcss-loader": "^2.1.6",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"script-ext-html-webpack-plugin": "^2.1.3",
"shelljs": "^0.8.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.2.1",
"yargs": "^12.0.5"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
}
}