-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 873 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 873 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
{
"name": "geant4-web-ui-monorepo",
"version": "0.1.0",
"private": true,
"description": "Geant4 Web UI Monorepo",
"workspaces": [
"packages/*"
],
"dependencies": {
"@chitrashensah/geant4-csg": "*",
"@popperjs/core": "^2.11.8",
"three-gpu-pathtracer": "^0.0.23",
"tippy.js": "^6.3.7"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test --workspaces --if-present",
"sync-three": "git submodule update --remote --merge",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"rollup-plugin-visualizer": "^6.0.5",
"vite": "^6.4.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}