-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.72 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.72 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
{
"name": "cognitive-space",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "wrangler dev",
"dev:ui": "node scripts/run-with-build-id.mjs vite",
"build": "node scripts/run-with-build-id.mjs vite build",
"favicons": "node scripts/generate-favicons.mjs",
"ops:waf-rate-limit": "node scripts/configure-cloudflare-rate-limits.mjs",
"ops:sync:rollback-check": "node scripts/verify-sync-rollout-rollback.mjs",
"ops:sync:consistency-check": "node scripts/check-sync-store-consistency.mjs",
"lint": "tsc --noEmit",
"test": "npm run test:node && npm run test:ui",
"test:node": "vitest run --config vitest.node.config.ts",
"test:ui": "vitest run --config vitest.ui.config.ts",
"preview": "wrangler dev",
"deploy": "npm run build && wrangler deploy",
"og-image": "node scripts/generate-og-image.mjs"
},
"dependencies": {
"@tanstack/react-virtual": "^3.13.21",
"idb": "^8.0.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260310.1",
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest-axe": "^3.5.9",
"@types/node": "^22.19.15",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.27",
"jest-axe": "^10.0.0",
"jsdom": "^28.1.0",
"png-to-ico": "^3.0.1",
"postcss": "^8.5.8",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wrangler": "^4.71.0"
}
}