forked from birkir/react-three-gui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "react-three-gui",
"version": "0.4.1",
"main": "dist/index.js",
"module": "dist/react-three-gui.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Birkir Gudjonsson <birkir.gudjonsson@gmail.com>",
"license": "MIT",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint"
},
"peerDependencies": {
"react": ">=16",
"react-three-fiber": "*",
"three": "*"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/react": "^16.9.48",
"@types/react-color": "^3.0.1",
"@types/react-dom": "^16.9.1",
"@types/react-is": "^16.7.1",
"@types/styled-components": "^5.1.2",
"eslint-config-react-app": "^5.2.1",
"husky": "^4.2.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-three-fiber": "^4.2.20",
"three": "^0.120.0",
"tsdx": "^0.13.3",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"dependencies": {
"@react-spring/three": "^9.0.0-rc.3",
"@react-spring/web": "^9.0.0-rc.3",
"react-color": "^2.18.1",
"react-is": "^16.13.1",
"react-use-gesture": "^7.0.15",
"styled-components": "^5.1.1"
}
}