This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 2.08 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
{
"name": "laravue",
"description": "Laravel Vue boilerplate",
"author": "Aslam <[email protected]>",
"license": "MIT",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"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 --disable-host-check --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 --no-progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"report": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --report --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "eslint --fix --ext .js,.vue resources/js",
"postinstall": "npm run prod"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"babel-plugin-import": "^1.13.3",
"compression-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-vue": "^7.5.0",
"eslint-webpack-plugin": "^2.5.0",
"laravel-mix": "^5.0.1",
"laravel-mix-eslint": "^0.2.0",
"laravel-mix-vue-css-modules": "^3.0.0",
"lodash": "^4.17.19",
"popper.js": "^1.12",
"resolve-url-loader": "^2.3.1",
"sass": "^1.32.6",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-chunk-rename-plugin": "^1.0.3"
},
"dependencies": {
"axios": "^0.21.1",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"vee-validate": "^3.4.5",
"vue": "^2.5.17",
"vue-i18n": "^8.22.4",
"vue-lazyload": "^1.3.4",
"vue-meta": "^2.4.0",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
}
}