-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.54 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.54 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
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
{
"name": "continuous-compliance",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest --watch=false",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"audit": "npm audit",
"audit:fix": "npm audit fix",
"audit:fix:dry-run": "npm audit fix --dry-run",
"audit:fix:force": "npm audit fix --force",
"format:fix": "prettier --write src/",
"format:staged": "lint-staged",
"format:check": "prettier --check src/",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx,vue,json,css,md}": "npm run format:fix"
},
"engines": {
"npm": "^10.1",
"node": "^20"
},
"dependencies": {
"@heroicons/vue": "^2.2.0",
"@tailwindcss/vite": "^4.1.14",
"@types/chart.js": "^2.9.41",
"@vueuse/core": "^13.5.0",
"@vueuse/integrations": "^13.9.0",
"axios": "^1.15.0",
"bootstrap-icons-vue": "^1.11.3",
"camelcase-keys": "^9.1.3",
"chart.js": "^4.5.0",
"chartjs-adapter-luxon": "^1.3.1",
"date-fns": "^4.1.0",
"decamelize-keys": "^2.0.1",
"luxon": "^3.7.2",
"pinia": "^2.3.1",
"pinia-plugin-persistedstate": "^3.2.3",
"primevue": "^4.4.0",
"sortablejs": "^1.15.6",
"tailwind-merge": "^3.3.1",
"tailwindcss-primeui": "^0.6.1",
"uuid": "^11.1.0",
"vue": "^3.5.13",
"vue-chartjs": "^5.3.2",
"vue-markdown-render": "^2.3.0",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tsconfig/node20": "^20.1.6",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.19.19",
"@vitejs/plugin-vue": "^5.2.4",
"@vitest/eslint-plugin": "1.1.10",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.21",
"chartjs-plugin-gradient": "^0.6.1",
"eslint": "^9.36.0",
"eslint-plugin-vue": "^9.33.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^16.2.3",
"npm-run-all2": "^7.0.2",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.10",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"vite": "^6.4.2",
"vite-plugin-vue-devtools": "^7.7.7",
"vitest": "^4.1.0",
"vue-tsc": "^2.2.12"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
}
}