-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.58 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.58 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
{
"name": "postech-dao.github.io",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.3",
"scripts": {
"sync": "svelte-kit sync",
"prepare-static": "node --experimental-strip-types scripts/prepare-static.ts",
"prepare-data": "node --experimental-strip-types scripts/fetch-data.ts",
"predev": "pnpm run sync && pnpm run prepare-static && pnpm run prepare-data",
"precheck": "pnpm run sync && pnpm run prepare-static && pnpm run prepare-data",
"pretest": "pnpm run sync && pnpm run prepare-static && pnpm run prepare-data",
"prebuild": "pnpm run sync && pnpm run prepare-static && pnpm run prepare-data",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --fail-on-warnings",
"test": "vitest run",
"lint": "biome check biome.json package.json scripts src .github",
"lint:fix": "biome check --write biome.json package.json scripts src .github",
"format": "biome format --write biome.json package.json scripts src .github",
"ci": "biome ci biome.json package.json scripts src .github"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@fontsource/roboto": "^5.2.10",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/node": "^25.5.0",
"@types/three": "^0.183.1",
"i18next": "^25.8.19",
"i18next-http-backend": "^3.0.2",
"svelte": "^5.54.0",
"svelte-check": "^4.4.5",
"three": "^0.183.2",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"vitest": "^4.1.0"
}
}