-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.38 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
{
"name": "react-r3f-shader-hook",
"version": "0.0.0-development",
"description": "A react hook that efficiently applies a shader to the scene without the need for expensive post-processing",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"rollup": "rollup -c",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"jest": "jest",
"jest:watch": "jest --watch",
"cypress": "cypress run --config video=false --component",
"semantic-release": "semantic-release --branches main"
},
"keywords": [],
"author": "Abshar Hassan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@react-three/drei": "^9.92.1",
"@react-three/fiber": "^8.15.12",
"@react-three/test-renderer": "^8.2.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/blocks": "^7.6.4",
"@storybook/react": "^7.6.4",
"@storybook/react-webpack5": "^7.6.4",
"@storybook/test": "^7.6.4",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.42",
"@types/three": "^0.159.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cypress": "^13.6.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.7.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^7.6.4",
"three": "^0.159.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"semantic-release": "^22.0.12"
},
"peerDependencies": {
"@react-three/fiber": "^8.15.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": ">=0.159.0 <1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AbsharHassan/react-r3f-shader-hook.git"
}
}