-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.2 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
{
"name": "mix",
"version": "1.0.0",
"description": "Default buildchain - yarn, webpack, ES6, SASS, vue",
"main": "dist/app.js",
"author": "Ben Manu <[email protected]>",
"private": true,
"scripts": {
"dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "eslint src/**/*"
},
"engines": {
"node": ">=6.9"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"classlist-polyfill": "^1.2.0",
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2.1",
"laravel-mix": "^2.0.0",
"vue": "^2.5.13"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"eslint": "^4.18.0",
"eslint-plugin-vue": "^4.2.2",
"vue-eslint-parser": "^2.0.3"
}
}