-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.83 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.83 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
{
"name": "standard-electric",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"clean": "rm -rf dist && rm -rf public/dist && rm -rf node_modules",
"deploy": "remix build && wrangler deploy",
"dev": "remix dev --manual -c \"wrangler dev\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\"",
"sync-assets": "bun scripts/syncAssets.ts"
},
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@cloudflare/workers-types": "^4.20240925.0",
"@remix-run/dev": "^2.12.1",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/addon-themes": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/test": "^8.6.12",
"@types/bun": "^1.2.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"autoprefixer": "^10.4.20",
"d3-geo": "^3.1.1",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"fs-extra": "^11.3.0",
"geojson": "^0.5.0",
"postcss": "^8.4.47",
"prettier": "^3.5.3",
"storybook": "^8.6.12",
"tailwindcss": "^3.4.13",
"topojson-client": "^3.1.0",
"typescript": "^5.6.0",
"wrangler": "4"
},
"dependencies": {
"@ionic/react": "^8.5.7",
"@ionic/react-router": "^8.5.7",
"@open-game-collective/auth-kit": "^0.0.2",
"@phosphor-icons/react": "^2.1.7",
"@react-spring/three": "^9.7.5",
"@react-spring/web": "^9.7.5",
"@react-three/drei": "^9.121.3",
"@react-three/fiber": "^8.17.12",
"@react-three/postprocessing": "^2.19.1",
"@remix-run/cloudflare": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@storybook/react-vite": "^8.6.12",
"@types/seedrandom": "^3.0.8",
"@xstate/store": "^2.6.2",
"actor-kit": "^0.47.0",
"clsx": "^2.1.1",
"ionicons": "^8.0.8",
"isbot": "^4.1.0",
"miniplex": "^2.0.0",
"postprocessing": "^6.36.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"seedrandom": "^3.0.5",
"tailwind-merge": "^3.2.0",
"three": "^0.172.0",
"three.quarks": "^0.16.0",
"tiny-invariant": "^1.3.3",
"xstate": "^5.19.2"
},
"engines": {
"node": ">=20.0.0"
}
}