-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
{
"name": "pwa-ar-app",
"version": "0.5.0",
"private": true,
"dependencies": {
"@react-three/drei": "^4.3.3",
"@react-three/fiber": "^6.2.2",
"clsx": "^1.1.1",
"deepmerge": "^4.2.2",
"fetch-json5": "^1.0.0",
"file-type": "^16.4.0",
"filesize": "^6.1.0",
"i18next": "^20.2.2",
"i18next-browser-languagedetector": "^6.1.0",
"json5": "^2.2.0",
"nanoid": "^3.1.23",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-detect-offline": "^2.4.3",
"react-dom": "^17.0.2",
"react-i18next": "^11.8.15",
"react-jss": "^10.6.0",
"react-scripts": "4.0.3",
"react-select": "^4.3.0",
"react-transition-group": "^4.4.1",
"react-use-gesture": "^9.1.3",
"three": "^0.128.0",
"webxr-polyfill": "^2.0.3",
"workbox-background-sync": "^5.1.3",
"workbox-broadcast-update": "^5.1.3",
"workbox-cacheable-response": "^5.1.3",
"workbox-core": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-navigation-preload": "^5.1.3",
"workbox-precaching": "^5.1.3",
"workbox-range-requests": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3",
"workbox-streams": "^5.1.3"
},
"scripts": {
"start": "HTTPS=true craco start",
"start:http": "craco start",
"serve": "npx http-server ./build --cors -S -C ./.cert/cert.pem -K ./.cert/key.pem",
"serve:http": "npx serve ./build",
"fresh": "rm -rf ./build && npm run build && npm run serve",
"fresh:http": "rm -rf ./build && npm run build && npm run serve:http",
"build": "craco build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@craco/craco": "^6.1.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"prettier": "^2.2.1",
"react-refresh": "^0.8.3",
"webpack-hot-middleware": "^2.25.0"
}
}