-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "miden-arena",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"deploy": "vite build && gh-pages -d dist"
},
"dependencies": {
"@miden-sdk/miden-sdk": "file:../miden-client/crates/web-client",
"@miden-sdk/miden-wallet-adapter": "^0.13.2",
"@miden-sdk/react": "file:../miden-client/packages/react-sdk",
"@react-spring/web": "^9.7.0",
"@react-three/drei": "^10.0.0",
"@react-three/fiber": "^9.0.0",
"@react-three/postprocessing": "^3.0.0",
"@tailwindcss/postcss": "^4.2.0",
"framer-motion": "^11.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "^0.170.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/three": "^0.170.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.0",
"gh-pages": "^6.3.0",
"postcss": "^8.4.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
}
}