-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1009 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1009 Bytes
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
{
"name": "fastshaders",
"private": true,
"version": "0.2.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"@babel/parser": "^7.26.0",
"@babel/traverse": "^7.26.0",
"@babel/types": "^7.26.0",
"@dagrejs/dagre": "^1.1.0",
"@monaco-editor/react": "^4.7.0",
"@xyflow/react": "^12.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.183.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.6",
"@types/node": "^25.3.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/three": ">=0.182.0",
"@vitejs/plugin-react": "^4.3.4",
"gh-pages": "^6.3.0",
"typescript": "^5.7.3",
"vite": "^6.0.0",
"vitest": "^4.1.6"
},
"overrides": {
"dompurify": "^3.4.5"
}
}