-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.91 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.91 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
92
93
94
95
96
97
98
99
100
101
{
"name": "dashy",
"version": "4.1.7",
"license": "MIT",
"main": "server",
"author": "Alicia Sykes <[email protected]> (https://aliciasykes.com)",
"scripts": {
"start": "node server",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.{js,vue}\"",
"validate-locales": "node tests/locales/check-locales.js",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"pm2-start": "npx pm2 start server.js",
"validate-config": "node services/config-validator",
"health-check": "node services/healthcheck",
"dependency-audit": "npx improved-yarn-audit --ignore-dev-deps"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.2",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.6",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@jsonforms/core": "^3.7.0",
"@jsonforms/vue": "^3.7.0",
"@jsonforms/vue-vanilla": "^3.7.0",
"@lezer/highlight": "^1.2.3",
"@sentry/vue": "^10.53.1",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"crypto-js": "^4.2.0",
"dompurify": "^3.4.3",
"express": "^4.22.2",
"express-basic-auth": "^1.2.1",
"frappe-charts": "^1.6.2",
"jose": "^5.10.0",
"js-yaml": "^4.1.0",
"keycloak-js": "^26.0.0",
"oidc-client-ts": "^3.0.1",
"rsup-progress": "^3.2.0",
"simple-icons": "^16.19.0",
"vue": "^3.5.34",
"vue-i18n": "^9.14.0",
"vue-router": "^4.4.0",
"vue-select": "4.0.0-beta.6",
"vuex": "^4.1.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitejs/plugin-vue": "^5.0.0",
"@vitest/ui": "^4.1.6",
"@vue/compiler-sfc": "^3.5.0",
"@vue/test-utils": "^2.4.8",
"autoprefixer": "^10.4.27",
"eslint": "^10.4.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.5.0",
"happy-dom": "^20.8.9",
"sass": "^1.77.0",
"supertest": "^7.2.2",
"typescript": "^6.0.3",
"vite": "^6.2.0",
"vite-plugin-pwa": "^1.3.0",
"vite-svg-loader": "^5.1.0",
"vitest": "^4.1.6",
"vue-eslint-parser": "^10.0.0",
"vue-tsc": "^3.2.9"
},
"engines": {
"node": ">=18.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"resolutions": {
"braces": "^3.0.3",
"micromatch": "^4.0.8",
"postcss": "^8.5.14",
"serialize-javascript": "^7.0.3",
"vite": "^6.2.0",
"@babel/plugin-transform-modules-systemjs": "^7.29.4"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}