forked from tonik/theme
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.5 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development webpack --progress --hide-modules --config build/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.js",
"watch": "npm run development -- --watch && webpack-dev-server --progress --colors",
"lint:js": "eslint resources/assets/js/**/*.{js,vue}",
"lint:sass": "stylelint resources/assets/sass/**/*.{scss,sass}",
"lint": "npm run lint:js && npm run lint:sass"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-loader": "^7.1.0",
"babel-preset-env": "^1.3.3",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.0",
"dotenv": "^5.0.1",
"eslint": "^4.10.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-vue": "^4.7.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.1",
"imagemin-webpack-plugin": "^1.4.4",
"img-loader": "^2.0.0",
"isdev": "^1.0.1",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"stylelint-webpack-plugin": "^0.7.0",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.4.4",
"webpack-merge": "^4.1.0"
}
}