-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 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
{
"name": "3d-vision-editor",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"format:frontend": "prettier --write \"src/**/*.{ts,tsx,css}\" vite.config.ts index.html",
"format:backend": "uvx black backend",
"format": "npm run format:frontend && npm run format:backend",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\" vite.config.ts index.html && uvx black --check backend"
},
"dependencies": {
"ajv": "^8.20.0",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.170.0"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.170.0",
"@vitejs/plugin-react": "^6.0.5",
"opentype.js": "^2.0.0",
"prettier": "^3.9.6",
"typescript": "~5.6.3",
"vite": "^8.2.1",
"vitest": "^4.1.11"
}
}