-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.89 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.89 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
{
"name": "offon-website",
"private": true,
"version": "0.0.0",
"packageManager": "npm@11.12.1",
"type": "module",
"scripts": {
"dev": "react-router dev",
"build": "react-router build",
"build:dev": "react-router build --mode development",
"lint": "eslint .",
"preview": "cp dist/client/404/index.html dist/client/404.html && npx serve dist/client",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"generate": "node scripts/generate-adventures.mjs",
"generate:validate": "node scripts/generate-adventures.mjs --validate-only",
"prebuild": "node scripts/generate-adventures.mjs",
"new-adventure": "node scripts/new-adventure.mjs",
"new-level": "node scripts/new-level.mjs"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.11.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router": "^7.14.2",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@react-router/dev": "^7.14.2",
"@tailwindcss/vite": "^4.2.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^22.19.17",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"yaml": "^2.9.0"
}
}