-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
103 lines (103 loc) · 3.25 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
{
"name": "@react-three/csg",
"version": "3.3.0",
"description": "Constructive solid geometry for React",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"postbuild": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"test": "echo no tests yet",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"changeset:add": "changeset add",
"changeset:version": "yarn changeset version && yarn install --mode update-lockfile",
"changeset:release": "yarn build && yarn build-storybook && yarn changeset publish"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/react-three-csg.git"
},
"keywords": [
"csg",
"threejs",
"3d"
],
"author": "Paul Henschel",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmndrs/react-three-csg/issues"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "7.16.0",
"@babel/plugin-transform-parameters": "7.16.0",
"@babel/plugin-transform-runtime": "7.16.0",
"@babel/plugin-transform-template-literals": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@changesets/changelog-git": "^0.1.12",
"@changesets/cli": "^2.24.3",
"@react-three/drei": "^9.86.3",
"@react-three/fiber": "^8.14.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-storysource": "^6.5.10",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-test-renderer": "^17.0.1",
"@types/three": "^0.153.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-loader": "^8.2.5",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.59.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.154.0",
"typescript": "^4.4.4"
},
"homepage": "https://github.com/pmndrs/react-three-csg#readme",
"dependencies": {
"three-bvh-csg": "^0.0.16",
"three-mesh-bvh": "^0.6.8"
}
}