forked from pmndrs/drei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "drei",
"version": "1.5.6",
"private": true,
"description": "useful add-ons for react-three-fiber",
"keywords": [
"react",
"three",
"threejs",
"react-three-fiber"
],
"repository": {
"type": "git",
"url": "git+https://github.com/react-spring/drei.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/react-spring/drei/issues"
},
"homepage": "https://github.com/react-spring/drei",
"main": "index.cjs.js",
"module": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"scripts": {
"prebuild": "rimraf dist && npm run typegen",
"build": "rollup -c && npm run copy",
"prepare": "npm run build",
"eslint": "eslint --fix {src,.storybook}/**/*.{js,ts,jsx,tsx}",
"eslint:ci": "eslint {src,.storybook}/**/*.{js,ts,jsx,tsx}",
"test": "echo no tests yet",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict --jsx react",
"typegen": "tsc --emitDeclarationOnly",
"storybook": "start-storybook -s ./.storybook/public -p 6006",
"build-storybook": "build-storybook -s ./.storybook/public",
"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;\""
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@react-spring/web": "^9.0.0-rc.3",
"glsl-noise": "^0.0.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"r3f-troika": "^0.31.1",
"react-merge-refs": "^1.0.0",
"stats.js": "^0.17.0",
"troika-three-text": "^0.31.0",
"utility-types": "^3.10.0",
"zustand": "^3.0.3"
},
"devDependencies": {
"@babel/core": "7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.10.4",
"@babel/plugin-transform-parameters": "7.10.5",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/plugin-transform-template-literals": "7.10.5",
"@babel/preset-env": "7.11.0",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@storybook/addon-actions": "^6.0.14",
"@storybook/addon-knobs": "^6.0.14",
"@storybook/addon-storysource": "^6.0.14",
"@storybook/addons": "^6.0.14",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.0.14",
"@storybook/theming": "^6.0.14",
"@types/jest": "^26.0.10",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"copyfiles": "^2.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"glslify-loader": "^2.0.0",
"husky": "^4.2.5",
"jest": "^26.4.1",
"json": "^10.0.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-three-fiber": "^4.2.21",
"rimraf": "^3.0.2",
"rollup": "^2.26.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"three": "^0.120.1",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": ">=16.13",
"react-dom": ">=16.13",
"react-three-fiber": ">=4.2"
}
}