-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "onlinemateriallibrary",
"version": "1.0.0",
"description": "Online Material Library - Real-time shader preview and GLSL/HLSL export",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node server/index.cjs",
"dev:full": "concurrently \"npm run dev\" \"npm run server\"",
"build": "vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimChen1383/OnlineMaterialLibrary.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TimChen1383/OnlineMaterialLibrary/issues"
},
"homepage": "https://github.com/TimChen1383/OnlineMaterialLibrary#readme",
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.11.0",
"three": "^0.182.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.2",
"concurrently": "^9.1.0",
"vite": "^7.3.0"
}
}