-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.98 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
{
"private": true,
"scripts": {
"less": "lessc $(git rev-parse --show-toplevel)/views/assets/antd-custom.less --js > node_modules/ant-design-vue/dist/antd.custom.css",
"start-d": "npm run less && cross-env NODE_ENV=development RENDER_TARGET=client mix watch --hot",
"start": "npm run less && cross-env NODE_ENV=development RENDER_TARGET=client mix watch --hot",
"serve": "vue-cli-service serve",
"prod": "git clean -xdf public && npm run less && cross-env NODE_ENV=production RENDER_TARGET=client mix && tar zcvf public.tar.gz public/assets",
"dash-start": "npm run less && cross-env NODE_ENV=development RENDER_TARGET=client BUILD_FOR=dashboard mix watch --hot",
"dash-prod": "git clean -xdf public && npm run less && cross-env NODE_ENV=production RENDER_TARGET=client BUILD_FOR=dashboard mix && tar zcvf dash-public.tar.gz public/dashboard/assets"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.2.31",
"@vue/server-renderer": "^3.2.31",
"babel-plugin-import": "^1.13.3",
"cross-env": "^7.0.3",
"laravel-mix": "*",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lessc": "^1.0.2",
"lodash": "^4.17.21",
"mix-env-file": "^0.1.1",
"postcss-import": "^14.1.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"vue-loader": "^17.0.0",
"vue-server-renderer": "^2.6.14"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"ant-design-vue": "^3.1.0-rc.4",
"axios": "^0.26.1",
"chart.js": "^3.7.1",
"dayjs": "^1.11.0",
"sanitize-html": "^2.7.0",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"vue": "^3.2.31",
"vue-chart-3": "^3.1.8",
"vue-meta": "^3.0.0-alpha.9",
"vue-progressbar": "^0.7.5",
"vue-router": "^4.0.14",
"vue-screen": "^2.1.0-alpha.5",
"vuex": "^4.0.2"
}
}