-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 4.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "terrain",
"version": "1.0.0",
"author": "✨ Alex ✨ <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"start": "yarn run serve",
"serve": "yarn run clean && vite",
"build": "yarn run clean && NODE_ENV=production vite build",
"build:rust": "wasm-pack build ./src/slomojs/crate --target web --release",
"types": "tsc --build",
"lint": "eslint --report-unused-disable-directives .",
"test": "vitest",
"check": "yarn types && yarn lint && yarn test",
"format": "git ls-files | grep -E '.*\\.(js|mjs|cjs|ts|jsx|tsx|html|css|json|yml|md)$' | xargs prettier --write"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.23.5",
"@headlessui/tailwindcss": "^0.2.0",
"@types/classnames": "^2.3.1",
"@types/dat.gui": "^0.7.12",
"@types/diff": "^5.0.9",
"@types/glob": "^8.1.0",
"@types/pixi.js": "^5.0.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-transition-group": "^4.4.10",
"@types/three": "^0.132.2",
"@types/use-subscription": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.1.0",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"rimraf": "^3.0.2",
"typescript": "^5.3.3",
"vite": "^5.0.7",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-glsl": "^1.2.0",
"vitest": "^1.0.3",
"webgl-strict-types": "^1.0.5"
},
"dependencies": {
"@babel/generator": "^7.23.5",
"@babel/types": "^7.23.5",
"@floating-ui/react-dom": "^2.0.8",
"@headlessui/react": "^1.7.2",
"@juggle/resize-observer": "^3.4.0",
"@radix-ui/react-slot": "^1.0.2",
"@tldraw/state": "2.0.0-alpha.14",
"@tldraw/store": "2.0.0-alpha.14",
"@types/babel__core": "^7.20.1",
"@types/babel__generator": "^7.6.7",
"@types/color": "^3.0.6",
"@types/culori": "patch:@types/culori@npm%3A2.0.4#~/.yarn/patches/@types-culori-npm-2.0.4-129982cb7c.patch",
"@types/d3-color": "^3.1.3",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-quadtree": "^3.0.6",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/delaunator": "^5.0.2",
"@types/node": "^18.19.3",
"classnames": "^2.3.2",
"color": "^4.2.3",
"culori": "^3.3.0",
"d3-color": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-quadtree": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"dat.gui": "0.7.9",
"delaunator": "^5.0.0",
"diff": "^5.1.0",
"fast-deep-equal": "^3.1.3",
"immutable": "^4.3.4",
"jest-diff": "^29.7.0",
"leva": "^0.9.35",
"open-simplex-noise": "^2.5.0",
"pixi.js": "^6.5.10",
"react": "18.3.0-canary-2f8f77602-20240229",
"react-dom": "18.3.0-canary-2f8f77602-20240229",
"react-icons": "^4.12.0",
"react-router-dom": "^6.21.1",
"react-transition-group": "^4.4.5",
"rebound": "^0.1.0",
"regenerator-runtime": "^0.14.0",
"tailwindcss": "^3.3.6",
"three": "^0.132.2",
"use-resize-observer": "^9.1.0",
"use-subscription": "^1.8.0",
"utility-types": "^3.10.0",
"vite-plugin-html": "^3.2.0",
"webmidi": "^3.1.7"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"packageManager": "[email protected]",
"resolutions": {
"@headlessui/[email protected]": "patch:@headlessui/react@npm:1.7.2#.yarn/patches/@headlessui-react-npm-1.7.2-149c706e3c.patch"
}
}