36 lines
1.3 KiB
JSON
36 lines
1.3 KiB
JSON
{
|
|
"name": "gridpilot",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "GridPilot - Clean Architecture monorepo for web platform and Electron companion app",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"apps/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "echo 'Development server placeholder - to be configured'",
|
|
"build": "echo 'Build all packages placeholder - to be configured'",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run tests/unit",
|
|
"test:integration": "vitest run tests/integration",
|
|
"test:e2e": "vitest run tests/e2e",
|
|
"test:watch": "vitest watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"companion": "npm run companion:build --workspace=@gridpilot/companion && npm run start --workspace=@gridpilot/companion",
|
|
"companion:dev": "npm run dev --workspace=@gridpilot/companion",
|
|
"companion:build": "npm run build --workspace=@gridpilot/companion",
|
|
"companion:start": "npm run start --workspace=@gridpilot/companion",
|
|
"chrome:debug": "open -a 'Google Chrome' --args --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug"
|
|
},
|
|
"devDependencies": {
|
|
"@cucumber/cucumber": "^11.0.1",
|
|
"@vitest/ui": "^2.1.8",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^2.1.8"
|
|
},
|
|
"dependencies": {}
|
|
}
|