-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.53 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
{
"name": "client-v3",
"version": "0.30.1",
"description": "DigiScript front end (Vue 3)",
"author": "DreamTeamProd",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"build:analyze": "vite build --mode analyze",
"lint": "npm run format && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.{ts,vue}' --fix",
"ci-lint": "npm run format:check && npm run lint:eslint-check",
"lint:eslint-check": "eslint 'src/**/*.{ts,vue}'",
"format": "prettier --write 'src/**/*.{ts,vue,json,css,scss}'",
"format:check": "prettier --check 'src/**/*.{ts,vue,json,css,scss}'",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"dev": "vite"
},
"engines": {
"npm": ">=11.0.0 <12",
"node": ">=24.0.0 <25"
},
"dependencies": {
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"bootstrap": "^5.3.8",
"bootstrap-vue-next": "^0.45.4",
"bootswatch": "^5.3.8",
"contrast-color": "1.0.1",
"core-js": "^3.49.0",
"d3-hierarchy": "^3.1.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"deep-object-diff": "1.1.9",
"dompurify": "^3.4.5",
"fuse.js": "^7.3.0",
"lodash": "^4.18.1",
"loglevel": "^1.9.2",
"marked": "^18.0.4",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"splitpanes": "^4.0.4",
"vue": "^3.5.34",
"vue-multiselect": "^3.5.0",
"vue-router": "^5.0.7",
"vue-toast-notification": "^3.1.3"
},
"devDependencies": {
"@emnapi/core": "1.10.0",
"@emnapi/runtime": "1.10.0",
"@eslint/js": "^10.0.1",
"@iconify-json/mdi": "^1.2.3",
"@types/lodash": "~4.17.24",
"@types/node": ">=22.12.0",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitejs/plugin-vue": "^6.0.7",
"@vitest/ui": "^4.1.7",
"@vue/test-utils": "^2.4.10",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"jiti": "^2.7.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"sass": "1.100.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"unplugin-icons": "^23.0.1",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.0.14",
"vitest": "^4.1.7",
"vue-eslint-parser": "^10.4.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}