-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.48 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.48 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@argos/root",
"private": true,
"scripts": {
"dev": "turbo run watch-build watch-server watch-codegen --concurrency 100",
"build": "turbo run build",
"test": "TZ=utc vitest",
"e2e:setup": "NODE_ENV=test pnpm run --filter @argos/backend db:truncate && NODE_ENV=test pnpm run --filter @argos/backend db:seed",
"e2e:start": "NODE_ENV=test playwright test",
"setup": "turbo run setup",
"resend-webhook-proxy": "NODE_TLS_REJECT_UNAUTHORIZED=0 smee --url https://smee.io/H7XOiU60kSYJJTZs --target https://api.argos-ci.dev:4001/resend/event-handler",
"github-webhook-proxy": "NODE_TLS_REJECT_UNAUTHORIZED=0 smee --url https://smee.io/SmH89Dx2HZ89wK7T --target https://api.argos-ci.dev:4001/github/event-handler",
"github-light-webhook-proxy": "NODE_TLS_REJECT_UNAUTHORIZED=0 smee --url https://smee.io/T3JFnf2lr3Zq6 --target https://api.argos-ci.dev:4001/github-light/event-handler",
"grok-proxy": "ngrok http --host-header=rewrite --domain=foal-great-publicly.ngrok-free.app https://app.argos-ci.dev:4002",
"stripe-webhook-proxy": "stripe listen --forward-to https://api.argos-ci.dev:4001/stripe/event-handler",
"lint": "turbo run lint lint:root",
"lint:root": "eslint . --max-warnings 0",
"check-types": "turbo run check-types",
"check-format": "turbo run check-format",
"format": "prettier --write .",
"clean-deps": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"build-production": "BUILD_MODE=production pnpm run build && pnpm run clean-deps && pnpm install --prod",
"codegen": "NODE_TLS_REJECT_UNAUTHORIZED=0 graphql-codegen --config codegen.ts",
"watch-codegen": "pnpm run codegen --watch --silent",
"knip": "knip",
"download-env": "op read op://argos-dev/argos/.env.local >> .env"
},
"repository": "github:argos-ci/argos",
"engines": {
"node": "24"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"devDependencies": {
"@0no-co/graphqlsp": "^1.15.2",
"@argos-ci/playwright": "^6.6.0",
"@argos/eslint-config": "workspace:*",
"@graphql-codegen/cli": "^6.2.1",
"@graphql-codegen/client-preset": "^5.2.4",
"@graphql-codegen/fragment-matcher": "^6.0.0",
"@graphql-codegen/schema-ast": "^5.0.1",
"@graphql-codegen/typescript": "^5.0.9",
"@graphql-codegen/typescript-resolvers": "^5.1.7",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@parcel/watcher": "^2.5.6",
"@playwright/test": "^1.58.2",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.21",
"@types/node": "^24.0.0",
"chokidar": "^5.0.0",
"eslint": "catalog:",
"knip": "^6.0.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"smee-client": "^5.0.0",
"turbo": "^2.8.20",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@apollo/protobufjs",
"@parcel/watcher",
"@sentry/cli",
"@swc/core",
"@tailwindcss/oxide",
"esbuild",
"odiff-bin",
"oxc-resolver",
"sharp"
],
"overrides": {
"@types/express": "catalog:",
"@types/express-serve-static-core": "catalog:",
"dompurify": "^3.3.2",
"express": "catalog:",
"file-type": "^21.3.2",
"lodash": "catalog:",
"lodash-es": "catalog:",
"minimatch": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"undici": "catalog:"
}
}
}