forked from pmndrs/react-three-fiber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 4.43 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "react-three-fiber",
"private": true,
"version": "5.3.18",
"description": "A React renderer for Three.js (web and react-native)",
"keywords": [
"react",
"renderer",
"fiber",
"three",
"threejs"
],
"author": "Paul Henschel",
"license": "MIT",
"bugs": {
"url": "https://github.com/drcmda/react-three-fiber/issues"
},
"homepage": "https://github.com/drcmda/react-three-fiber#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/drcmda/react-three-fiber.git"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-three-fiber"
},
"main": "web.cjs.js",
"module": "web.js",
"react-native": "native.js",
"types": "targets/web.d.ts",
"files": [
"**"
],
"sideEffects": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"scripts": {
"postinstall": "yarn --cwd ./examples",
"prebuild": "rimraf dist && npm run typegen",
"build": "rollup -c && yarn copy && rimraf dist/__tests__",
"prepare": "npm run build",
"eslint": "eslint --fix src/**/*.{ts,tsx}",
"dev": "yarn --cwd ./examples start",
"test": "jest",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict --jsx react",
"typegen": "tsc && mv dist/src/* dist && rm -rf dist/src || true",
"typegen:components": "npx ts-node src/components/generateExports.ts",
"copy": "copyfiles package.json readme.md LICENSE dist && json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.optionalDependencies=undefined; this.scripts=undefined; this.husky=undefined; this.prettier=undefined; this.jest=undefined; this['lint-staged']=undefined;\"",
"pack-dist": "cd dist && yarn pack && mv *.tgz .."
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"react-merge-refs": "^1.1.0",
"react-reconciler": "0.26.1",
"react-use-measure": "^2.0.3",
"resize-observer-polyfill": "^1.5.1",
"scheduler": "0.20.1",
"tiny-emitter": "^2.1.0",
"use-asset": "^1.0.2",
"utility-types": "^3.10.0"
},
"peerDependencies": {
"react": ">=17.0",
"react-dom": ">=17.0",
"three": ">=0.121"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "7.12.3",
"@babel/helper-call-delegate": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/plugin-transform-parameters": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/plugin-transform-template-literals": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-strip": "^2.0.0",
"@types/jest": "^26.0.15",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-native": "^0.63.27",
"@types/react-reconciler": "^0.18.0",
"@types/react-test-renderer": "^16.9.3",
"@types/scheduler": "^0.16.1",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"copyfiles": "^2.4.0",
"cypress": "^5.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"expo-gl": "^9.1.1",
"expo-three": "^5.5.1",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-cli": "^26.6.1",
"jest-image-snapshot": "^4.2.0",
"jest-puppeteer": "^4.4.0",
"json": "^10.0.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"puppeteer": "^5.4.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-native": "^0.63.3",
"react-test-renderer": "^17.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.32.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"three": "^0.122.0",
"ts-jest": "^26.4.1",
"typescript": "^3.9.7",
"wait-on": "^5.2.0"
}
}