-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.34 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.34 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
{
"name": "icrashedmyplane",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=25.0.0"
},
"scripts": {
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"ci:build": "run-p type-check \"build-only {@}\" --",
"ci:unit": "vitest --run",
"dev": "vite",
"doc": "npx typedoc --out docs src",
"format": "prettier --write .",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"src/**/*.{vue,css,scss,sass}\"",
"lint:oxlint": "oxlint -c oxlintrc.json src",
"lint:knip": "knip",
"lint": "run-s 'lint:*'",
"preview": "vite preview",
"test:e2e": "playwright test",
"test:e2e:dev": "playwright test --ui",
"test:unit": "vitest",
"type-check": "vue-tsc --build"
},
"dependencies": {
"@intlify/core-base": "^11.3.0",
"@sentry/vue": "^10.45.0",
"cldr-data": "^36.0.5",
"cldrjs": "^0.5.5",
"lodash-es": "^4.17.23",
"normalize.css": "^8.0.1",
"pinia": "^3.0.4",
"vue": "^3.5.30",
"vue-i18n": "^11.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@pinia/testing": "^1.0.3",
"@playwright/test": "^1.59.1",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node22": "^22.0.5",
"@types/cldrjs": "^0.4.29",
"@types/jsdom": "^28.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.5.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/compiler-dom": "^3.5.30",
"@vue/server-renderer": "^3.5.30",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.1.0",
"eslint-plugin-vue": "^10.8.0",
"jiti": "^2.6.1",
"jsdom": "^29.0.1",
"knip": "^6.0.5",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.57.0",
"postcss": "^8.5.8",
"postcss-html": "^1.8.1",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"stylelint": "^17.5.0",
"stylelint-config-standard-scss": "^17.0.0",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.2",
"vite-plugin-csp-guard": "^3.0.0",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-vue-devtools": "^8.1.1",
"vitest": "^4.1.1",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.6"
},
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7"
}