|
7 | 7 | "check": "pnpm typecheck && pnpm lint && pnpm prettier:check", |
8 | 8 | "check:fix": "pnpm typecheck; pnpm lint:fix", |
9 | 9 | "dev": "turbo run dev --parallel", |
10 | | - "docker:build": "DOCKER_BUILDKIT=1 docker build . -t docs --no-cache", |
| 10 | + "docker:build": "source .env.local && DOCKER_BUILDKIT=1 docker build . -t docs --no-cache --build-arg ENVIRONMENT=$ENVIRONMENT", |
11 | 11 | "docker:clean": "docker builder prune", |
12 | 12 | "docker:up": "docker run --rm -it -p 3000:80 -v \"$(pwd)/nginx.conf:/etc/nginx/nginx.conf\" docs", |
13 | | - "export": "pnpm --filter @graphprotocol/docs export", |
14 | 13 | "lint": "eslint . --cache --ignore-path .gitignore --max-warnings 0", |
15 | 14 | "lint:fix": "eslint . --cache --ignore-path .gitignore --fix; pnpm prettier", |
16 | 15 | "pre-commit": "lint-staged --concurrent false", |
17 | 16 | "pre-push": "pnpm build", |
18 | 17 | "prepare": "husky install && chmod +x .husky/*", |
19 | 18 | "prettier": "pnpm prettier:check --write", |
20 | 19 | "prettier:check": "prettier --cache --check .", |
21 | | - "start": "pnpm --filter @graphprotocol/docs start", |
22 | 20 | "test": "turbo run test", |
23 | 21 | "typecheck": "turbo run typecheck" |
24 | 22 | }, |
25 | 23 | "devDependencies": { |
26 | | - "@edgeandnode/eslint-config": "^2.0.2", |
27 | | - "eslint": "^8.52.0", |
| 24 | + "@edgeandnode/eslint-config": "^2.0.3", |
| 25 | + "eslint": "^8.55.0", |
28 | 26 | "eslint-plugin-mdx": "^2.2.0", |
29 | 27 | "husky": "^8.0.3", |
30 | | - "lint-staged": "^15.0.2", |
31 | | - "prettier": "^3.0.3", |
| 28 | + "lint-staged": "^15.2.0", |
| 29 | + "prettier": "^3.1.1", |
32 | 30 | "prettier-plugin-pkg": "^0.18.0", |
33 | 31 | "remark-frontmatter": "^5.0.0", |
34 | 32 | "remark-lint-first-heading-level": "^3.1.2", |
35 | 33 | "remark-lint-heading-increment": "^3.1.2", |
36 | 34 | "remark-lint-no-heading-punctuation": "^3.1.2", |
37 | 35 | "remark-lint-restrict-elements": "workspace:*", |
38 | | - "turbo": "^1.10.16", |
39 | | - "typescript": "^5.2.2" |
| 36 | + "turbo": "^1.11.2", |
| 37 | + "typescript": "^5.3.3" |
40 | 38 | }, |
41 | 39 | "lint-staged": { |
42 | 40 | "**/*.{js,jsx,ts,tsx,mjs,cjs}": "eslint --fix", |
|
0 commit comments