-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "offon-website",
"private": true,
"version": "0.0.0",
"license": "MIT",
"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 .",
"lint:reuse": "reuse lint",
"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 --grep-invert visual",
"test:visual": "playwright test --grep visual",
"test:visual:update": "playwright test --grep visual --update-snapshots",
"generate": "node scripts/generate-adventures.mjs",
"generate:validate": "node scripts/generate-adventures.mjs --validate-only",
"generate:solutions": "node scripts/generate-solutions.mjs",
"generate:solutions:validate": "node scripts/generate-solutions.mjs --validate-only",
"prebuild": "node scripts/generate-adventures.mjs && node scripts/generate-solutions.mjs",
"postbuild": "node scripts/create-data-aliases.mjs",
"postbuild:dev": "node scripts/create-data-aliases.mjs"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.27.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^8.3.0",
"tailwind-merge": "^3.5.0"
},
"overrides": {
"postcss": "^8.5.23",
"fast-uri": "^3.1.4"
},
"engines": {
"node": ">=26.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"@react-router/dev": "^8.3.0",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"ajv": "^8.20.0",
"eslint": "^10.8.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.8.0",
"jsdom": "^29.1.1",
"jszip": "^3.10.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"reveal.js": "^6.0.1",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"unified": "^11.0.5",
"vite": "^8.1.5",
"vitest": "^4.1.5",
"yaml": "^2.9.0"
}
}