summaryrefslogtreecommitdiff
path: root/package.json
blob: 185946ebbc2df84ac457b1b5a9a85e7b521e730b (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
34
35
36
37
38
39
40
41
{
  "name": "gemini-code",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "workspaces": [
    "packages/*"
  ],
  "scripts": {
    "build": "scripts/build.sh",
    "build:sandbox": "scripts/build_sandbox.sh",
    "build:all": "npm run build && npm run build:sandbox",
    "clean": "scripts/clean.sh",
    "test": "npm run test --workspaces",
    "start": "NODE_ENV=development scripts/start.sh",
    "debug": "NODE_ENV=development DEBUG=1 scripts/start.sh",
    "lint:fix": "eslint . --fix",
    "lint": "eslint . --ext .ts,.tsx",
    "typecheck": "tsc --noEmit --jsx react-jsx",
    "format": "prettier --write .",
    "preflight": "npm run format --workspaces --if-present && npm run lint --workspaces --if-present && npm run test --workspaces --if-present",
    "auth:npm": "npx google-artifactregistry-auth",
    "auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev",
    "auth": "npm run auth:npm && npm run auth:docker",
    "prerelease:dev": "npm run prerelease:version --workspaces && npm run prerelease: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",
    "react-devtools-core": "^4.28.5",
    "typescript-eslint": "^8.30.1",
    "yargs": "^17.7.2"
  }
}