-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.87 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.87 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
46
47
48
49
50
51
52
53
54
55
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build-packages": "yarn workspaces foreach --recursive --from='packages/*' --topological --verbose run build",
"shared:build": "yarn workspace @hylo/shared build",
"backend:dev": "yarn build-packages && yarn workspace backend run dev",
"cron": "yarn workspace backend cron",
"worker": "yarn workspace backend worker",
"migrate": "yarn workspace backend migrate",
"migrate-up": "yarn workspace backend migrate-up",
"web:dev": "yarn build-packages && yarn workspace web run dev",
"mobile:dev": "yarn build-packages && yarn workspace mobile start",
"mobile:pod-install": "yarn workspace mobile pod-install",
"mobile:android": "yarn build-packages && yarn workspace mobile run android",
"mobile:clean": "yarn workspace mobile run clean",
"mobile:ios": "yarn build-packages && yarn workspace mobile run ios",
"desktop": "yarn workspace desktop start",
"desktop:build": "yarn workspace desktop make",
"reset": "rm -rf **/node_modules **/.yarn/cache **/yarn.lock && yarn install",
"heroku-postbuild": "./heroku-postbuild.sh"
},
"engines": {
"node": "^20",
"yarn": "^4.9.2"
},
"packageManager": "yarn@4.9.2",
"devDependencies": {
"@types/jest": "^30.0.0",
"standard": "^17.1.2",
"ts-jest": "^29.4.0",
"typescript": "5.0.4"
},
"resolutions": {
"@deck.gl/core": "9.0.35",
"@deck.gl/geo-layers": "9.0.35",
"@luma.gl/core": "9.0.28",
"@luma.gl/engine": "9.0.28",
"@luma.gl/constants": "9.0.28",
"@luma.gl/gltf": "9.0.28",
"@emotion/utils": "^1.1.0",
"@emotion/sheet": "^1.1.0",
"htmlparser2": "9.1.0",
"entities": "4.5.0",
"nativewind/react-native-css-interop": "0.1.22",
"react-native-reanimated": "3.18.0"
},
"version": "1.0.0",
"dependencies": {
"archiver": "^7.0.1"
}
}