-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.39 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.39 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"$schema": "https://json.schemastore.org/package.json",
"name": "sonicthames.github.io",
"homepage": "https://sonicthames.github.io",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@pixi/react": "^8.0.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@svgr/cli": "^8.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-ease": "^3.0.1",
"fp-ts": "^2.16.11",
"gh-pages": "6.3.0",
"history": "5.3.0",
"io-ts": "^2.2.22",
"luxon": "^3.7.2",
"mapbox-gl": "3.16.0",
"pixi.js": "^8.14.1",
"posthog-js": "^1.283.0",
"react": "19.3.0-canary-fb2177c1-20251114",
"react-dom": "19.3.0-canary-fb2177c1-20251114",
"react-map-gl": "8.1.0",
"react-responsive": "^10.0.1",
"react-router": "^7.9.4",
"react-router-dom": "^7.9.4",
"rxjs": "^7.8.2",
"web-vitals": "5.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.2",
"@eslint/js": "^9.38.0",
"@modelcontextprotocol/sdk": "^1.20.2",
"@playwright/mcp": "0.0.45",
"@testing-library/dom": "^10.0.0",
"@types/d3-ease": "^3.0.2",
"@types/geojson": "7946.0.16",
"@types/history": "^4.7.11",
"@types/luxon": "3.7.1",
"@types/mapbox-gl": "3.4.1",
"@types/node": "^24.7.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@vanilla-extract/css": "^1.17.4",
"@vanilla-extract/recipes": "^0.5.7",
"@vanilla-extract/sprinkles": "^1.6.5",
"@vanilla-extract/vite-plugin": "^5.1.1",
"@vitejs/plugin-react": "^5.0.4",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.38.0",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^27.0.0",
"playwright": "^1.56.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^7.1.9",
"vitest": "4.0.1"
},
"scripts": {
"build-icons": "rm -rf ./src/icon/generated && pnpm run generate-icons",
"build": "vite build",
"clean": "rm -rf dist",
"compiler:verify": "pnpm run build && pnpm run lint:compiler && pnpm run test",
"deploy": "tsx scripts/deploy.ts",
"dev": "vite",
"dev:test": "vite --host 127.0.0.1 --port 4747",
"eslint": "eslint .",
"eslint:compiler": "eslint . --max-warnings=0",
"format:check": "biome check",
"format": "biome format",
"generate-icons": "svgr --template ./src/icon/template.js --typescript --ext tsx --icon --expand-props none --replace-attr-values '#FFF=currentColor,#181E27=currentColor' --out-dir=./src/icon/generated ./static/icons",
"lint:compiler": "pnpm run eslint:compiler",
"lint:fix": "biome check --write",
"lint": "biome check",
"mcp:discover": "pnpm tsx scripts/mcp-discover.ts",
"serve": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "pnpm@10.19.0"
}