-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "webpack-sample",
"version": "1.0.0",
"description": "Webpack 3 for PrestaShop Starter theme",
"main": "index.js",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 9"
],
"scripts": {
"watch": "webpack --watch --progress --colors --env=dev",
"dev": "webpack --progress --hide-modules --env=dev",
"prod": "webpack --progress --hide-modules --env=prod",
"build": "echo \"Error: use dev or prod\" && exit 0 ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Frédéric BENOIST",
"license": "AFL-3.0",
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browserslist": "^3.1.1",
"css-loader": "^0.28.9",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"image-webpack-loader": "^4.1.0",
"less": "^2.3.1",
"less-loader": "^4.0.5",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"webpack": "^3.11.0"
}
}