-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.4 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "maxmaxmaximus",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js"
},
"dependencies": {
"@react-three/drei": "^2.1.0",
"@react-three/gltfjsx": "^3.0.7",
"mobx": "^6.0.1",
"mobx-react-lite": "^3.0.0",
"nice-color-palettes": "^3.0.0",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.2",
"react-refresh": "^0.8.3",
"react-spring": "^8.0.27",
"react-three-fiber": "^5.0.3",
"react-use-gesture": "^7.0.16",
"redux": "^4.0.5",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.2",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@vxna/gltf-loader": "^2.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"extract-css-chunks-webpack-plugin": "^4.7.5",
"file-loader": "^6.1.0",
"fork-ts-checker-webpack-plugin": "^5.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.5.0",
"image-webpack-loader": "^7.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.1.1",
"postcss-loader": "^4.0.3",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@react-spring/three": "^9.0.0-rc.3",
"copy-webpack-plugin": "^6.2.0",
"use-cannon": "^0.5.3",
"sass": "^1.26.12",
"sass-loader": "^10.0.2",
"stylus": "^0.54.8",
"stylus-loader": "^4.1.0",
"terser-webpack-plugin": "^4.2.2",
"thread-loader": "^3.0.0",
"three": "^0.121.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.0.3",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-dev-server": "^3.11.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"semi": false
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"react",
"react-hooks",
"prettier",
"@typescript-eslint"
],
"rules": {
"prettier/prettier": "warn",
"react-hooks/exhaustive-deps": "warn",
"react-hooks/rules-of-hooks": "error",
"react/prop-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off"
}
}
}