-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "html-js-css-webpack-template",
"version": "1.0.0",
"description": "Compiled website",
"private": true,
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"build": "NODE_ENV=production webpack"
},
"browserslist": [
"> 0.25%",
"ie 10",
"ie 11"
],
"repository": {
"type": "git"
},
"author": "Eric Yang <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.0.0-beta.42",
"@babel/preset-env": "7.0.0-beta.42",
"autoprefixer": "8.1.0",
"babel-loader": "8.0.0-beta.2",
"clean-webpack-plugin": "0.1.19",
"css-loader": "0.28.10",
"cssnano": "3.10.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"html-webpack-plugin": "3.0.6",
"node-sass": "4.7.2",
"postcss-loader": "2.1.1",
"postcss-scss": "1.0.4",
"sass-loader": "6.0.7",
"style-loader": "0.20.3",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "4.1.1",
"webpack-cli": "2.0.12",
"webpack-dev-server": "3.1.1"
},
"dependencies": {
"normalize.css": "8.0.0"
}
}