-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.38 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
{
"name": "client",
"version": "0.31.2",
"description": "DigiScript front end",
"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}'",
"lint:filter": "./scripts/eslint-filter.sh",
"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": {
"bootstrap": "4.6.2",
"bootstrap-vue": "2.23.1",
"bootswatch": "4.6.2",
"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.8",
"fuse.js": "7.4.2",
"jquery": "3.7.1",
"lodash": "4.18.1",
"loglevel": "1.9.2",
"marked": "11.2.0",
"splitpanes": "^2.4.1",
"vue": "2.7.14",
"vue-multiselect": "2.1.9",
"vue-native-websocket": "2.0.15",
"vue-router": "3.6.5",
"vue-toast-notification": "0.6.3",
"vuelidate": "0.7.7",
"vuex": "3.6.2",
"vuex-persistedstate": "3.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/lodash": "~4.17.24",
"@types/node": "~20.14.0",
"@types/vuelidate": "^0.7.22",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"@vitejs/plugin-vue2": "2.3.4",
"@vitest/ui": "^4.1.8",
"@vue/test-utils": "^2.4.11",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^9.33.0",
"globals": "^15.14.0",
"jiti": "^2.7.0",
"jsdom": "^27.4.0",
"prettier": "^3.8.3",
"sass": "1.100.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^7.3.3",
"vitest": "^4.1.8"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}