-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"name": "web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"generate:materials": "bun scripts/generate-materials.mjs",
"validate:content": "bun scripts/validate-content.ts",
"prebuild": "bun run generate:materials && bun run validate:content",
"build": "tsc -b && vite build",
"lint": "oxlint",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"preview": "vite preview",
"check": "bun run generate:materials && bun run validate:content && bun run lint && bun run test && bun run build",
"deploy:pages": "node scripts/deploy-pages.mjs"
},
"dependencies": {
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.2",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.4",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"gh-pages": "^6.3.0",
"github-slugger": "^2.0.0",
"jsdom": "^30.0.1",
"oxlint": "^1.75.0",
"typescript": "~6.0.2",
"vite": "^8.2.0",
"vitest": "^4.1.10"
}
}