36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"name": "gemini-code",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "scripts/build.sh",
|
|
"clean": "scripts/clean.sh",
|
|
"test": "npm run test --workspaces",
|
|
"start": "scripts/start.sh",
|
|
"debug": "DEBUG=1 scripts/start.sh",
|
|
"lint:fix": "eslint . --fix",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"typecheck": "tsc --noEmit --jsx react",
|
|
"format": "prettier --write .",
|
|
"preflight": "npm run format --workspaces --if-present && npm run lint --workspaces --if-present && npm run test --workspaces --if-present",
|
|
"artifactregistry-login": "npx google-artifactregistry-auth",
|
|
"stage": "npm run stage:version --workspaces && npm run stage:deps --workspaces"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^9.24.0",
|
|
"eslint-config-prettier": "^10.1.2",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-license-header": "^0.8.0",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"globals": "^16.0.0",
|
|
"lodash": "^4.17.21",
|
|
"prettier": "^3.5.3",
|
|
"typescript-eslint": "^8.30.1"
|
|
}
|
|
}
|