-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·56 lines (56 loc) · 1.89 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
{
"name": "webpack-sass-boilerplate",
"version": "0.0.1",
"description": "Webpack boilerplate with sass",
"main": "./src/index.js",
"author": "NB",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.js -p --optimize-minimize",
"start": "cross-env NODE_ENV=dev webpack-dev-server --config ./config/webpack.config.js --open",
"dev": "cross-env NODE_ENV=dev webpack-dev-server --config ./config/webpack.config.js",
"dev-browsersync": "cross-env browsersync=true NODE_ENV=dev webpack-dev-server --config ./config/webpack.config.js"
},
"devDependencies": {
"ajv-keywords": "^2.1.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^1.2.0",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.4.2",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"lodash-webpack-plugin": "^0.11.4",
"node-sass": "^4.7.2",
"postcss": "^6.0.14",
"postcss-css-variables": "^0.8.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^2.1.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "8.x.x",
"stylelint-config-standard": "^17.0.0",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4"
},
"dependencies": {
"jquery": "^3.3.1",
"lodash": "^4.17.4",
"reset.scss": "^1.0.0",
"slick-carousel": "^1.8.1"
}
}