-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.03 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
{
"name": "travel-repack-super-app",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=22"
},
"engineStrict": true,
"scripts": {
"start:travel-host": "pnpm --filter TravelHost start",
"start:travel-weather": "pnpm --filter TravelWeather start",
"start:travel-destinations": "pnpm --filter TravelDestinations start",
"start:travel-search": "pnpm --filter TravelSearch start",
"start:travel-photos": "pnpm --filter TravelPhotos start",
"start:standalone:travel-weather": "pnpm --filter TravelWeather start:standalone",
"start:standalone:travel-destinations": "pnpm --filter TravelDestinations start:standalone",
"start:standalone:travel-search": "pnpm --filter TravelSearch start:standalone",
"start:standalone:travel-photos": "pnpm --filter TravelPhotos start:standalone",
"run:travel-host:ios": "pnpm --filter TravelHost ios",
"run:travel-host:android": "pnpm --filter TravelHost android",
"start:travel:concurrently": "concurrently -n HOST,WEATHER,DESTINATIONS,SEARCH,PHOTOS -c green,blue,yellow,magenta,cyan \"pnpm run start:travel-host\" \"pnpm run start:travel-weather\" \"pnpm run start:travel-destinations\" \"pnpm run start:travel-search\" \"pnpm run start:travel-photos\" || true",
"start": "mprocs",
"typecheck": "nx run-many -t typecheck",
"lint:check": "nx run-many -t lint",
"lint": "nx run-many -t lint --fix --outputStyle static",
"test": "nx run-many -t test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"adbreverse": "nx run-many -t adbreverse",
"align-deps": "pnpm -r align-deps",
"check-deps": "pnpm -r check-deps"
},
"devDependencies": {
"@nx/eslint": "21.0.2",
"@nx/eslint-plugin": "21.0.2",
"@nx/jest": "21.0.2",
"@nx/plugin": "21.0.2",
"concurrently": "^8.2.2",
"eslint": "~8.57.1",
"mprocs": "^0.7.1",
"nx": "21.0.2",
"prettier": "^3.4.2"
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"@swc/helpers": "0.5.15"
}
}