-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"description": "A simple example of using threejs and fiber to display a very large floor and a limited number of objects above it.",
"main": "index.js",
"dependencies": {
"query-string": "7.1.3",
"querystring": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "6.6.2",
"react-router-dom": "6.6.2",
"@react-three/fiber": "8.10.0",
"@types/three": "0.148.0",
"react-scripts": "4.0.3",
"three": "0.148.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"source-map-loader": "^0.2.4",
"ts-loader": "^9.4.2",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.3.1",
"style-loader": "^2.0.0",
"webpack": "5.75.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "^3.11.2",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"typescript": "4.9.5"
},
"scripts": {
"start": "webpack serve --config webpack.dev.config.js",
"buildprd": "webpack --config webpack.prod.config.js",
"build": "webpack --config webpack.dev.config.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}