-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
101 lines (101 loc) · 4.02 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"private": true,
"scripts": {
"dev": "npm run dev.js & npm run dev.css",
"watch": "npm run watch.js & npm run watch.css",
"watch-hot": "npm run watch-hot.js & npm run watch.css",
"prod": "npm run prod.js & npm run prod.css",
"dev-fe": "mix --mix-config=webpack-frontend.mix.js",
"watch-fe": "mix watch --mix-config=webpack-frontend.mix.js",
"watch-fe-hot": "mix watch --mix-config=webpack-frontend.mix.js --hot",
"prod-fe": "mix --production --mix-config=webpack-frontend.mix.js",
"watch-all": "npm run watch & npm run watch-fe",
"prod-all": "npm run prod-fe & npm run prod",
"dev.css": "mix --mix-config=webpack-css.mix.js",
"watch.css": "mix watch --mix-config=webpack-css.mix.js",
"watch-hot.css": "mix watch --mix-config=webpack-css.mix.js --hot",
"prod.css": "mix --production --mix-config=webpack-css.mix.js",
"dev.js": "mix --mix-config=webpack-js.mix.js",
"watch.js": "mix watch --mix-config=webpack-js.mix.js",
"watch-hot.js": "mix watch --mix-config=webpack-js.mix.js --hot",
"prod.js": "mix --production --mix-config=webpack-js.mix.js",
"dev.js.report": "mix --mix-config=webpack-js.mix.js -- --env --report",
"prod.js.report": "mix --production --mix-config=webpack-js.mix.js -- --env --report",
"dev-fe.report": "mix --report --mix-config=webpack-frontend.mix.js",
"prod-fe.report": "mix --production --report --mix-config=webpack-frontend.mix.js",
"prepare": "husky install",
"lint": "lint-staged",
"eslint:fix": "eslint '**/*.{js,vue}' --fix",
"prettier:fix": "prettier --write '**/*.{js,vue}'",
"prettier:php": "prettier --write **/*.php",
"prettier:quick": "pretty-quick --staged"
},
"lint-staged": {
"*.{js,vue}": [
"eslint '**/*.{js,vue}' --fix"
]
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@prettier/plugin-php": "^0.17.5",
"autoprefixer": "^10.3.7",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^9.0.0",
"core-js": "^3.18.3",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.19.1",
"eslint-webpack-plugin": "^3.0.1",
"husky": "^7.0.2",
"laravel-mix": "^6.0.34",
"laravel-mix-merge-manifest": "^2.0.0",
"laravel-mix-purgecss": "^6.0.0",
"lint-staged": "^11.2.3",
"moment-locales-webpack-plugin": "^1.2.0",
"node-sass": "^6.0.1",
"path-browserify": "^1.0.1",
"postcss": "^8.3.9",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^12.2.0",
"script-loader": "^0.7.2",
"style-loader": "^3.3.0",
"svg-sprite-loader": "^6.0.9",
"tailwindcss": "^2.2.17",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.58.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.0"
},
"dependencies": {
"@babel/eslint-parser": "^7.15.8",
"axios": "^0.23.0",
"codemirror": "^5.63.3",
"echarts": "^5.2.1",
"element-ui": "^2.15.6",
"file-saver": "^2.0.5",
"js-cookie": "^3.0.1",
"jsonlint": "^1.6.3",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.0",
"sass": "^1.32.13",
"vue": "^2.6.14",
"vue-count-to": "^1.0.13",
"vue-i18n": "^8.26.5",
"vue-router": "^3.5.2",
"vuedraggable": "^2.24.3",
"vuex": "^3.6.2",
"xlsx": "^0.17.3"
}
}