forked from pmndrs/drei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.94 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
{
"name": "drei",
"version": "0.0.53",
"description": "useful add-ons for react-three-fiber",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist && npm run typegen",
"build": "rollup -c",
"prepare": "npm run build",
"eslint": "eslint src/**/*.{js,ts,jsx,tsx}",
"test": "echo no tests yet",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict --jsx react",
"typegen": "tsc --emitDeclarationOnly"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.*(js|jsx|ts|tsx)'"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/drcmda/drei.git"
},
"keywords": [
"react",
"three",
"threejs",
"react-three-fiber"
],
"author": "Paul Henschel",
"license": "MIT",
"bugs": {
"url": "https://github.com/drcmda/drei/issues"
},
"homepage": "https://github.com/drcmda/drei#readme",
"dependencies": {
"@babel/runtime": "^7.10.1",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"postprocessing": "^6.13.5",
"react-merge-refs": "^1.0.0",
"stats.js": "^0.17.0",
"troika-3d-text": "^0.26.1",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@babel/core": "7.10.1",
"@babel/plugin-transform-modules-commonjs": "7.10.1",
"@babel/plugin-transform-parameters": "7.10.1",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/plugin-transform-template-literals": "7.10.1",
"@babel/preset-env": "7.10.1",
"@babel/preset-react": "7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^25.2.3",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-three-fiber": "^4.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.11.2",
"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.117.1",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react": ">=16.13",
"react-dom": ">=16.13",
"react-three-fiber": ">=4.2"
}
}