31 lines
1.1 KiB
JSON
31 lines
1.1 KiB
JSON
{
|
|
"name": "@aethex/workspace",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev:web": "npm run dev --workspace=@aethex/web",
|
|
"dev:mobile": "npm run start --workspace=@aethex/mobile",
|
|
"dev:desktop": "npm run dev --workspace=@aethex/desktop",
|
|
"build:all": "npm run build --workspaces",
|
|
"build:web": "npm run build --workspace=@aethex/web",
|
|
"build:mobile:ios": "npm run build:ios --workspace=@aethex/mobile",
|
|
"build:mobile:android": "npm run build:android --workspace=@aethex/mobile",
|
|
"build:desktop": "npm run build --workspace=@aethex/desktop",
|
|
"test": "npm run test --workspaces",
|
|
"lint": "npm run lint --workspaces",
|
|
"clean": "npm run clean --workspaces && rm -rf node_modules"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"@types/react": "^18.2.45",
|
|
"@types/react-dom": "^18.2.18",
|
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
"@typescript-eslint/parser": "^6.15.0",
|
|
"eslint": "^8.56.0",
|
|
"prettier": "^3.1.1",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|