summaryrefslogtreecommitdiff
path: root/package.json
blob: b0d563709de73dd5636c3d08986d920061a223c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "name": "gemini-code",
  "version": "1.0.0",
  "private": true,
  "type": "module",
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "build": "npm run build --workspaces",
    "clean": "rm -rf node_modules && npm run clean --workspaces",
    "test": "npm run test --workspaces",
    "start": "scripts/start.sh",
    "debug": "scripts/debug.sh",
    "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"
  },
  "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",
    "prettier": "^3.5.3",
    "typescript-eslint": "^8.30.1"
  }
}