-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.57 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
{
"name": "plannting-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:mobile\"",
"dev:api": "npm run dev --workspace=apps/api",
"dev:mobile": "npm run dev --workspace=apps/mobile",
"build": "npm run build --workspace=apps/api && npm run build --workspace=apps/mobile",
"build:api": "npm run build --workspace=apps/api",
"build:mobile": "npm run build --workspace=apps/mobile",
"build:mobile:development-build": "npm run build:development:build --workspace=apps/mobile",
"build:mobile:update": "npm run build:development:update --workspace=apps/mobile",
"start": "concurrently \"npm run start:api\" \"npm run start:mobile\"",
"start:api": "npm run start --workspace=apps/api",
"start:mobile": "npm run start --workspace=apps/mobile",
"lint": "npm run lint --workspace=apps/api && npm run lint --workspace=apps/mobile",
"lint:api": "npm run lint --workspace=apps/api",
"lint:mobile": "npm run lint --workspace=apps/mobile",
"doctor": "npx --workspace=apps/mobile expo-doctor",
"test": "npm run test:api && npm run test:mobile && npm run test:e2e",
"test:watch": "npm run test:api:watch && npm run test:mobile:watch",
"test:api": "npm run test --workspace=apps/api",
"test:api:watch": "npm run test:watch --workspace=apps/api",
"test:mobile": "npm run test --workspace=apps/mobile",
"test:mobile:watch": "npm run test:watch --workspace=apps/mobile",
"test:e2e": "npm run test:e2e:start-servers \"npm run cypress:run -- --spec 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}'\"",
"test:e2e:open": "npm run test:e2e:start-servers \"npm run cypress:open\"",
"test:e2e:start-servers": "start-server-and-test test:e2e:start-api http://localhost:3050/health test:e2e:start-mobile http://localhost:8081",
"test:e2e:start-servers:wait": "npm run test:e2e:start-servers \"sleep 2147483647\"",
"test:e2e:start-api": "tsx scripts/testApiServer.ts",
"test:e2e:start-mobile": "cross-env EXPO_PUBLIC_CYPRESS=1 npm run dev:mobile",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"dbBackup": "npm run dbBackup --workspace=apps/api",
"dbRestore": "npm run dbRestore --workspace=apps/api"
},
"devDependencies": {
"concurrently": "^8.2.2",
"cross-env": "^10.1.0",
"cypress": "^14.5.4",
"mongodb-memory-server": "^10.2.0",
"start-server-and-test": "^2.0.12",
"superjson": "^1.13.3",
"tsx": "^4.19.2"
},
"engines": {
"node": "20.x",
"npm": ">=8.0.0"
}
}