-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
80 lines (80 loc) · 3.33 KB
/
package.json
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
{
"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",
"slack-webhook-proxy": "ngrok http --host-header=rewrite --domain=foal-great-publicly.ngrok-free.app https://app.argos-ci.dev:4001",
"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",
"heroku-postbuild": "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",
"knip": "knip --tags=-route",
"download-env": "op read op://argos-dev/argos/.env.local >> .env"
},
"repository": "github:argos-ci/argos",
"engines": {
"node": "22"
},
"packageManager": "[email protected]+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b",
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@argos-ci/playwright": "^4.1.0",
"@eslint/js": "9.19.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.5.1",
"@graphql-codegen/fragment-matcher": "^5.0.2",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.1.2",
"@graphql-codegen/typescript-resolvers": "^4.4.1",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@parcel/watcher": "^2.5.1",
"@playwright/test": "^1.50.0",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.9",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.10",
"@vitest/eslint-plugin": "^1.1.25",
"eslint": "9.19.0",
"knip": "^5.43.3",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"smee-client": "^2.0.4",
"turbo": "^2.3.4",
"typescript": "5.7.3",
"typescript-eslint": "^8.21.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
},
"resolutions": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"undici": "6.21.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@apollo/protobufjs",
"@parcel/watcher",
"@sentry/cli",
"@swc/core",
"esbuild",
"odiff-bin",
"sharp"
]
}
}