Some checks failed
CI / Lint & Format Check (push) Failing after 1m11s
CI / Test Backend (push) Failing after 1m32s
CI / Build Backend (push) Has been skipped
Security Audit / npm audit (push) Failing after 5s
Security Audit / Dependency Review (push) Has been skipped
CI / Test Frontend (push) Failing after 29s
CI / Build Frontend (push) Has been skipped
32 lines
1.2 KiB
JSON
32 lines
1.2 KiB
JSON
{
|
|
"name": "xpeditis",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Xpeditis - Maritime Freight Booking Platform (B2B SaaS)",
|
|
"author": "Xpeditis Team",
|
|
"license": "UNLICENSED",
|
|
"scripts": {
|
|
"backend:dev": "cd apps/backend && npm run dev",
|
|
"backend:build": "cd apps/backend && npm run build",
|
|
"backend:test": "cd apps/backend && npm test",
|
|
"backend:lint": "cd apps/backend && npm run lint",
|
|
"frontend:dev": "cd apps/frontend && npm run dev",
|
|
"frontend:build": "cd apps/frontend && npm run build",
|
|
"frontend:test": "cd apps/frontend && npm test",
|
|
"frontend:lint": "cd apps/frontend && npm run lint",
|
|
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
"install:all": "npm install && cd apps/backend && npm install && cd ../frontend && npm install && cd ../..",
|
|
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/dist apps/*/.next"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"prettier": "^3.1.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"npm": ">=10.0.0"
|
|
}
|
|
}
|