-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.67 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
{
"private": true,
"ignorePatterns": [
"**/node_modules/**/*.*"
],
"type": "module",
"scripts": {
"dev": "vite serve",
"build": "vite build --emptyOutDir",
"preview": "vite preview",
"//": "pnpm vue-tsc --noEmit && ",
"lint": "NODE_ENV=production eslint 'dashboard/*/{src,tests}/**/*.{ts,vue}'",
"update-deps": "pnpm update -i -r --latest",
"test": "vitest run"
},
"devDependencies": {
"@primevue/auto-import-resolver": "^4.2.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-typescript": "^14.1.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.31.0",
"lightningcss": "^1.28.2",
"postcss": "^8.4.49",
"rollup": "^4.27.4",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"unplugin-vue-components": "^0.27.5",
"vite": "6.0.1",
"vite-plugin-static-copy": "^2.2.0",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite": "4"
},
"ignoreMissing": [
"primeicons"
]
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"engines": {
"pnpm": ">=9"
},
"dependencies": {
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"isoworker": "^0.2.4",
"prettier": "^3.4.1",
"vitest": "^2.1.6"
}
}