-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.74 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
{
"name": "@react-three/cannon-examples",
"version": "2.4.1",
"description": "Examples for @react-three/cannon",
"private": true,
"scripts": {
"build": "tsc && vite build",
"clean": "rm -rf dist/*",
"dev": "vite",
"serve": "vite preview",
"eslint": "eslint .",
"eslint-fix": "eslint --fix .",
"prettier": "prettier --list-different .",
"prettier-fix": "prettier --write ."
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@react-three/cannon": "^6.6.0",
"@react-three/drei": "^9.97.5",
"@react-three/fiber": "^8.15.16",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.5",
"@types/react-dom": "^17.0.14",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.25",
"@types/three": "^0.155.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typescript-enum": "^2.1.0",
"lerp": "^1.0.3",
"lodash-es": "^4.17.21",
"prettier": "^2.6.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.0.0",
"react-router-dom": "^6.2.2",
"styled-components": "^5.3.5",
"three": "^0.155.0",
"three-stdlib": "^2.29.4",
"typescript": "^4.6.3",
"vite": "^5.1.1",
"vite-react-jsx": "^1.1.2",
"zustand": "^4.5.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,json,jsx,md,ts,tsx}": "prettier --write"
},
"license": "MIT",
"sideEffects": false,
"type": "module"
}