-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
74 lines (74 loc) · 2 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
{
"name": "@react-three/p2",
"version": "0.0.6",
"description": "2D physics based hooks for react-three-fiber",
"keywords": [
"p2",
"2D",
"three",
"react",
"react-three-fiber",
"physics"
],
"author": "Joerg Jaeckel",
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/use-p2.git"
},
"license": "MIT",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"eslint": "eslint .",
"eslint-fix": "eslint --fix .",
"prebuild": "tsc",
"prepare": "husky install",
"prettier": "prettier --list-different .",
"prettier-fix": "prettier --write .",
"test": "echo tests are missing"
},
"dependencies": {
"events": "^3.3.0",
"p2-es": "^0.7.3"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@react-three/fiber": "^7.0.24",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/react": "^17.0.37",
"@types/three": "^0.136.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typescript-enum": "^2.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.64.0",
"rollup-plugin-web-worker-loader": "^1.6.1",
"three": "^0.137.0",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,md}": "prettier --write"
},
"peerDependencies": {
"react": ">=17.0",
"react-dom": ">=17.0"
}
}