-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.65 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
{
"homepage": "#homepage",
"name": "client",
"version": "0.3.2",
"private": true,
"dependencies": {
"@mediapipe/hands": "^0.1.1606863095",
"@react-spring/three": "^9.0.0-rc.3",
"@react-three/cannon": "^0.5.3",
"@react-three/drei": "^2.2.13",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^26.0.19",
"@types/matter-js": "^0.14.8",
"@types/node": "^12.19.11",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-router-dom": "^5.1.6",
"@types/socket.io-client": "^1.4.35",
"@types/styled-components": "^5.1.7",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"history": "^4.10.1",
"matter-js": "^0.15.0",
"matter-lines": "^0.1.0",
"matter-wrap": "^0.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-three-fiber": "^5.3.11",
"socket.io-client": "^2.3.0",
"styled-components": "^5.2.1",
"three": "^0.124.0",
"typescript": "^4.1.3",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"react-spring-issue-1078": "find node_modules -path \\*@react-spring/\\*/package.json -exec sed -i.bak 's/\"sideEffects\": false/\"sideEffects\": true/g' {} +",
"postinstall": "npm run react-spring-issue-1078"
},
"eslintConfig": {
"extends": [
"react-app",
"airbnb",
"prettier",
"react-app/jest"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
2,
{
"args": "none"
}
],
"react/no-array-index-key": 0,
"no-underscore-dangle": 0,
"react/jsx-no-bind": 0,
"no-alert": 0,
"no-restricted-globals": 0,
"no-param-reassign": 0,
"jsx-a11y/media-has-caption": 0,
"no-unused-vars": 1,
"use-before-define": 0,
"react/jsx-filename-extension": 0,
"react/jsx-one-expression-per-line": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"func-names": 0,
"no-undef": 0,
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": [
"error"
],
"consistent-return": 1,
"react/jsx-props-no-spreading": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}