-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 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
{
"name": "skills-and-resources",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"postinstall": "npm run fix-install --prefix tools/token-reader",
"check-updates": "npm-check-updates",
"dev": "vite",
"build": "vite build && npm run typecheck",
"preview": "vite preview",
"generate": "npm-run-all -s -c generate:**",
"generate:config-schema": "tsx ./tools/generate-json-schemas.ts",
"typecheck": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"format": "oxfmt",
"token-reader": "npm run start --prefix tools/token-reader --"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/national-park": "^5.2.11",
"@lottiefiles/dotlottie-vue": "^0.11.3",
"@vueuse/core": "^14.2.1",
"@vueuse/gesture": "^2.0.0",
"modern-normalize": "^3.0.1",
"pinia": "^3.0.4",
"typebox": "^1.0.81",
"vue": "^3.5.28",
"vue-router": "^4.6.4",
"yaml": "^2.8.2"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.13",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/tsconfig": "^0.8.1",
"npm-check-updates": "^19.3.2",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.31.0",
"oxlint": "^1.46.0",
"oxlint-tsgolint": "^0.17.0",
"patch-package": "^8.0.1",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-node-polyfills": "^0.25.0",
"vite-plugin-vue-devtools": "^8.0.6",
"vite-svg-loader": "^5.1.1",
"vue-tsc": "^3.2.4"
},
"engines": {
"node": ">=20.20.0 <21"
}
}