-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
45 lines (45 loc) · 1.87 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
{
"private": true,
"scripts": {
"phpfixer": "./vendor/bin/phpcbf -w --standard=PSR2 app/*",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "standard --plugin html resources/assets/js/**/* --fix"
},
"dependencies": {
"axios": "^0.17.1",
"js-cookie": "^2.2.0",
"vee-validate": "^2.0.9",
"vform": "^1.0.0",
"vue": "^2.5.16",
"vue-i18n": "^7.8.1",
"vue-meta": "^1.5.2",
"vue-router": "^3.0.1",
"vuetify": "^1.1.4",
"vuex": "^3.0.1",
"vuex-persistedstate": "^2.5.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"cross-env": "^5.2.0",
"eslint": "^3.19.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-vue-libs": "^1.2.1",
"laravel-mix": "^2.1",
"standard": "^10.0.3",
"stylint": "^1.5.9",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"svg-sprite-loader": "^3.9.0",
"vue-template-compiler": "^2.5.16",
"webpack-bundle-analyzer": "^2.13.1"
}
}