-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 852 Bytes
/
package.json
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
{
"name": "web-remote-desktop-xr",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "node --env-file=.env.local packages/server/index.mjs",
"start:production": "NODE_ENV=production node --env-file=.env.local packages/server/index.mjs",
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"vite": "^6.0.3"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@tailwindcss/vite": "4.0.0-beta.6",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.11.0"
},
"pnpm": {
"overrides": {
"three": "^0.170.0"
}
}
}