-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
59 lines (59 loc) · 2.47 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
57
58
59
{
"name": "laravel-vue-starter-buefy",
"version": "1.0.0",
"private": true,
"scripts": {
"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"
},
// NOTE WE MAY NEED TO UPDATE ALL DEPENDENCIES
// IF YOU HAVE npm auto update
// run command ncu
// if there is update then ncu -a
"devDependencies": {
// NOTE REMOVE ALL COMMENT
// Allows Us To Use ES6 Syntax
"babel-core": "^6.24.0",
// THIS WILL BE ON OUR BABELRC PRESET
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-polyfill": "^6.23.0",
// THIS WILL FIX CROSS ENV ERROR
"cross-env": "^5.0.0",
// ALLOW US TO LINT OUR CODE
"eslint": "^3.19.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-vue": "^2.0.1",
"stylelint-scss": "^1.4.3",
// CUSTOM LOADER THAT OUR WEBPACK CONFIG WILL USE
"css-loader": "^0.25.0",
"style-loader": "^0.13.1",
"babel-loader": "^7.0.0",
// Allows TO Read .vue files
"vue-loader": "^12.1.1",
// Installs Laravel Mix
"laravel-mix": "^0.12.0"
},
"dependencies": {
"axios": "^0.16.1",
"buefy": "^0.3.2",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"vee-validate": "^2.0.0-beta.25",
"vue": "^2.2.6",
"vue-facebook-signin-button": "^1.0.1",
"vue-router": "^2.3.1",
"vue-timeago": "^3.3.0",
"vuex": "^2.2.1",
"vuex-router-sync": "^4.1.2"
}
}