mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 02:07:55 +00:00
1e1c2310c9
- Remove root /home/mamostehp/package.json workspace config - Each project now independent (aligned with CI workflow) - Add SafeAreaProvider mock to jest setup - Add __DEV__ global for React Native tests - Update 4 snapshots for SafeAreaView changes - All 29 test suites pass (122 tests)
32 lines
1.4 KiB
JSON
32 lines
1.4 KiB
JSON
{
|
|
"name": "pwap",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Pezkuwi Web App Projects - Monorepo",
|
|
"scripts": {
|
|
"build": "npm run build:web && npm run build:sdk-ui && npm run build:mobile",
|
|
"build:web": "cd web && npm run build",
|
|
"build:sdk-ui": "cd /home/mamostehp/pezkuwi-sdk-ui && yarn build",
|
|
"build:mobile": "cd mobile && npx expo export --platform web",
|
|
"build:parallel": "concurrently \"npm run build:web\" \"npm run build:sdk-ui\"",
|
|
"dev": "concurrently \"npm run dev:web\" \"npm run dev:mobile\"",
|
|
"dev:web": "cd web && npm run dev",
|
|
"dev:sdk-ui": "cd /home/mamostehp/pezkuwi-sdk-ui && yarn start",
|
|
"dev:mobile": "cd mobile && npm run dev",
|
|
"install:all": "npm run install:web && npm run install:sdk-ui && npm run install:mobile && npm run install:backend",
|
|
"install:web": "cd web && npm install",
|
|
"install:sdk-ui": "cd /home/mamostehp/pezkuwi-sdk-ui && yarn install",
|
|
"install:mobile": "cd mobile && npm install",
|
|
"install:backend": "cd backend && npm install",
|
|
"lint": "npm run lint:web && npm run lint:mobile",
|
|
"lint:web": "cd web && npm run lint",
|
|
"lint:mobile": "cd mobile && npm run lint",
|
|
"test": "npm run test:web && npm run test:mobile",
|
|
"test:web": "cd web && npm run test",
|
|
"test:mobile": "cd mobile && npm run test"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.1.2"
|
|
}
|
|
}
|