-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"name": "react-xr-ui",
"version": "0.0.67",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/enijar/react-xr-ui"
},
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack serve --mode development",
"start-https": "HTTPS=true NODE_ENV=development webpack serve --mode development",
"build": "NODE_ENV=production webpack --mode production",
"package": "tsc -p tsconfig.lib.json",
"package-watch": "tsc -p tsconfig.lib.json -w",
"prepublishOnly": "npm run package"
},
"browserslist": [
"defaults",
"not IE 11"
],
"files": [
"dist/*"
],
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@react-three/drei": "^9.79.4",
"@react-three/fiber": "^8.13.6",
"@react-three/xr": "^5.6.2",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@types/three": "^0.154.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.1.4",
"copy-webpack-plugin": "^11.0.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-inline-script-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.3",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.0",
"react-router-dom": "^6.14.2",
"three": "^0.154.0",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"@react-three/fiber": ">=8.0",
"react": ">=18.0",
"react-dom": ">=18.0",
"three": ">=0.137"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
}
}