-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.69 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
102
103
104
105
106
107
108
109
{
"private": true,
"scripts": {
"dev": "npm run mix:dev && npm run nuxt:dev",
"build": "npm run mix:build && npm run nuxt:build",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "npm run lint -- --fix",
"lint:check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"test": "npm run mix:test && npm run nuxt:test",
"mix:dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"mix:watch": "npm run mix:dev -- --watch",
"mix:watch:poll": "npm run mix:watch -- --watch-poll",
"mix: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",
"mix:build": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"mix:test": "echo no test",
"nuxt:dev": "nuxt",
"nuxt:build": "nuxt build",
"nuxt:test": "jest",
"release": "standard-version"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@nuxt/test-utils": "^3.0.0-rc.3",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/proxy": "^2.1.0",
"@nuxtjs/stylelint-module": "^4.1.0",
"@nuxtjs/vuetify": "^1.12.3",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.4.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"loglevel": "^1.8.0",
"nuxt-dropzone": "^1.0.4",
"nuxt-laravel": "^4.2.9",
"postcss-html": "^1.4.1",
"prettier": "^2.5.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "^24.0.0",
"vue-jest": "^3.0.4",
"vue-property-decorator": "^9.1.2"
},
"dependencies": {
"@handsontable/vue": "^12.0.1",
"@mdi/font": "^6.5.95",
"@nuxt/content": "^1.15.1",
"@nuxt/types": "^2.15.8",
"@nuxtjs/auth-next": "^5.0.0-1648802546.c9880dc",
"@nuxtjs/i18n": "^7.2.2",
"@nuxtjs/pwa": "^3.3.5",
"ag-grid-community": "^27.2.1",
"ag-grid-vue": "^27.2.1",
"apexcharts": "^3.35.3",
"chart.js": "^3.7.1",
"cookie-universal-nuxt": "^2.1.5",
"core-js": "^3.19.3",
"echarts": "^5.3.2",
"frappe-gantt": "^0.6.0",
"handsontable": "^12.0.1",
"nuxt": "^2.15.8",
"nuxt-sweetalert2": "^1.0.0",
"nuxt-webpack-optimisations": "^2.2.0",
"tabulator-tables": "^5.2.7",
"v-currency-field": "^3.1.1",
"vue-chartjs": "^4.0.7",
"vue-class-component": "^7.2.6",
"vue-cookies": "^1.8.1",
"vue-echarts": "^6.0.3",
"vue-gates": "^2.1.2",
"vue-tabulator": "^1.3.0",
"vuetify": "^2.6.3",
"vuetify-money": "^1.2.0",
"vuetify-multiple-draggable-dialogs": "^1.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,vue}": "eslint --cache",
"*.{css,scss,sass,html,vue}": "stylelint",
"*.**": "prettier --check --ignore-unknown"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}