-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.74 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "terra-synth",
"author": "Kenneth Pirman <[email protected]>",
"description": "Terrain generation powered by real world datasets",
"version": "0.0.0",
"private": true,
"license": "MIT",
"repository": "[email protected]:kenjinp/hello-worlds",
"scripts": {
"start": "pnpm dev",
"dev": "turbo run dev --filter=examples",
"build:examples": "turbo run build --filter=examples",
"build": "turbo run build --filter=./packages/*",
"preinstall": "npx only-allow pnpm",
"test": "jest --passWithNoTests",
"deliver": "pnpm --filter=!docs build && pnpm -r test",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:release": "pnpm deliver && pnpm changeset publish",
"ship:docs": "flyctl deploy ./ --build-arg LIVEBLOCKS_API_KEY=$LIVEBLOCKS_API_KEY -c apps/docs/fly.toml --dockerfile=./apps/docs/Dockerfile"
},
"dependencies": {
"@hello-worlds/core": "^0.0.9",
"@hello-worlds/planets": "^0.0.23",
"@hello-worlds/react": "^0.0.26",
"@react-three/drei": "9.88.7",
"@react-three/fiber": "8.15.8",
"@react-three/postprocessing": "^2.15.11",
"camera-controls": "^2.7.3",
"leva": "^0.9.27",
"postprocessing": "^6.33.4",
"r3f-perf": "^6.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "0.158.0",
"three-custom-shader-material": "^4.0.0",
"three-stdlib": "^2.23.10"
},
"devDependencies": {
"@changesets/cli": "^2.23.2",
"@types/node": "18.11.10",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.0",
"@types/three": "^0.141.0",
"prettier": "^2.8.1",
"prettier-plugin-glsl": "^0.0.5",
"prettier-plugin-organize-imports": "^3.2.3"
},
"workspaces": [
"infra/*",
"packages/*",
"apps/*"
]
}