-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.3 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.3 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
{
"name": "client",
"version": "0.25.0",
"description": "DigiScript front end",
"author": "DreamTeamProd",
"private": true,
"scripts": {
"prebuild": "scripts/copy-docs.sh && node scripts/generate-doc-manifest.js",
"build": "vite build",
"build:analyze": "vite build --mode analyze",
"lint": "npm run format && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.{js,vue}' --fix",
"ci-lint": "npm run format:check && npm run lint:eslint-check",
"lint:eslint-check": "eslint 'src/**/*.{js,vue}'",
"lint:filter": "./scripts/eslint-filter.sh",
"format": "prettier --write 'src/**/*.{js,vue,json,css,scss}'",
"format:check": "prettier --check 'src/**/*.{js,vue,json,css,scss}'",
"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.48.0",
"d3-hierarchy": "^3.1.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"deep-object-diff": "1.1.9",
"dompurify": "3.3.1",
"fuse.js": "7.1.0",
"jquery": "3.7.1",
"lib0": "^0.2.117",
"lodash": "4.17.23",
"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",
"yjs": "^13.6.29"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/preset-env": "7.29.0",
"@eslint/js": "^9.39.2",
"@types/vuelidate": "^0.7.22",
"@vitejs/plugin-vue2": "2.3.4",
"@vitest/ui": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^9.33.0",
"globals": "^15.14.0",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"sass": "1.97.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}