forked from INUnity-for-UNI/inunity-front
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.61 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.61 KB
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
{
"name": "inunity-front",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"nextapp": "yarn workspace inunity-web",
"nativeapp": "yarn workspace inunity-native ",
"run-ios": "EXPO_PUBLIC_WEB_URL=http://$(ipconfig getifaddr en0):3000; yarn nextapp run dev & yarn nativeapp run ios",
"run-android": "EXPO_PUBLIC_WEB_URL=http://$(ipconfig getifaddr en0):3000; yarn nextapp run dev & yarn nativeapp run android",
"run-ios-sim": "EXPO_PUBLIC_WEB_URL=http://localhost:3000; yarn nextapp run dev & yarn nativeapp run ios",
"start": "yarn nextapp run dev & EXPO_PUBLIC_WEB_URL=http://$(ipconfig getifaddr en0):3000 yarn nativeapp start",
"startsim": "yarn nextapp run dev & EXPO_PUBLIC_WEB_URL=http://localhost:3000 yarn nativeapp start",
"mock-server": "node mock-server.js",
"dev:local": "yarn mock-server & yarn startsim",
"lint": "yarn nextapp lint; yarn nativeapp lint",
"build": "yarn nextapp run build"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"tailwindcss"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.0",
"@fortawesome/free-solid-svg-icons": "^6.7.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "0.74.5"
},
"resolutions": {
"@tanstack/query-broadcast-client-experimental": "^5.59.13",
"@tanstack/react-query": "^5.59.16",
"@tanstack/react-query-devtools": "^5.59.15"
},
"devDependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"typescript": "^5.6.3"
}
}