-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.8 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.8 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": "me",
"version": "0.0.0-no-version",
"type": "module",
"private": true,
"license": "ISC",
"scripts": {
"build": "vite build",
"build:old-deploy-files": "./bin/build-old-deploy-files.sh",
"clean": "rm -rf dist/*",
"deploy": "./gh-pages.sh",
"deps:ci": "depcruise src",
"deps:visualize": "depcruise src --include-only \"^src\" --config --output-type dot | dot -T svg > dependency-graph.svg",
"dev": "vite",
"lint:ci": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky",
"preview": "vite preview --port 5173",
"style:ci": "prettier .",
"style:fix": "prettier --write .",
"test": "pnpm run test:vitest && pnpm run test:e2e",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5173/me/ test:e2e:playwright:run",
"test:e2e:open": "start-server-and-test dev http://127.0.0.1:5173/me/ test:e2e:playwright:open",
"test:e2e:playwright:open": "playwright test --ui",
"test:e2e:playwright:run": "playwright test",
"test:mutate": "stryker run",
"test:vitest": "vitest run",
"test:vitest:browser": "vitest run --project=browser",
"test:vitest:browser:coverage": "vitest run --project=browser --coverage --coverage.reportsDirectory=reports/coverage/browser",
"test:vitest:coverage": "vitest run --coverage",
"test:vitest:unit": "vitest run --project=unit",
"test:vitest:unit:coverage": "vitest run --project=unit --coverage --coverage.reportsDirectory=reports/coverage/unit"
},
"dependencies": {
"@mdi/font": "7.4.47",
"@vueuse/core": "14.2.1",
"antlr4": "4.13.2",
"jspdf": "4.2.1",
"jspdf-autotable": "5.0.7",
"localforage": "1.10.0",
"pinia": "3.0.4",
"source-code-pro": "2.42.0",
"source-sans": "3.52.0",
"uuid": "13.0.0",
"vis-data": "8.0.3",
"vis-network": "10.0.2",
"vis-util": "6.0.0",
"vue": "3.5.32",
"vue-router": "5.0.4",
"vuetify": "4.0.5"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@stryker-mutator/core": "9.6.1",
"@stryker-mutator/vitest-runner": "9.6.1",
"@vitejs/plugin-vue": "6.0.5",
"@vitest/browser": "4.1.4",
"@vitest/browser-playwright": "4.1.4",
"@vitest/coverage-v8": "4.1.4",
"@vue/compiler-dom": "3.5.32",
"@vue/server-renderer": "3.5.32",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.27",
"dependency-cruiser": "17.3.10",
"gh-pages": "6.3.0",
"globals": "17.4.0",
"globby": "16.2.0",
"husky": "9.1.7",
"jsdom": "29.0.2",
"lint-staged": "16.4.0",
"oxlint": "1.59.0",
"playwright": "1.59.1",
"prettier": "3.8.2",
"start-server-and-test": "3.0.2",
"vite": "8.0.8",
"vite-plugin-vuetify": "2.1.3",
"vitest": "4.1.4"
},
"engines": {
"node": ">=22.16"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}