-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.79 KB
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
{
"name": "vue3",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --port 3354",
"format": "prettier --write .",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .ts,.vue --cache",
"lint:fix": "eslint . --ext .ts,.vue --fix --cache",
"dev:lint": "concurrently -k -n VITE,ESLINT -c auto \"vite\" \"chokidar 'src/**/*.{ts,vue}' -c 'eslint --cache {path}'\"",
"dev:ts": "CHECK_TS=true vite",
"dev:all": "CHECK_TS=true pnpm dev:lint",
"build": "vite build",
"build:typecheck": "vue-tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@vercel/analytics": "^1.6.1",
"ag-grid-community": "^35.1.0",
"ag-grid-vue3": "^35.1.0",
"axios": "^1.13.5",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"vite-plugin-vuetify": "^2.1.3",
"vue": "^3.5.28",
"vue-i18n": "^11.2.8",
"vue-router": "^5.0.2",
"vue-tabler-icons": "^2.21.0",
"vue-toastification": "2.0.0-rc.5",
"vue3-easy-data-table": "^1.5.47",
"vuetify": "^3.11.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.2.3",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/tsconfig": "^0.8.1",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.7.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"sass-embedded": "^1.97.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1",
"vite-plugin-checker": "^0.12.0",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.2.4"
},
"browserslist": [
"defaults",
"not IE 11",
"not op_mini all"
],
"packageManager": "pnpm@10.8.1"
}