-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
80 lines (80 loc) · 3.42 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.398035c7bd696d0ba0b10a688ed558285329d27ea994804a52bad9167d8e3a72bcb993f9699585d3ca25779ac64949ef422757a6c31102c12ab932e5cbe5cc92",
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@argos-ci/playwright": "^5.0.3",
"@eslint/js": "9.24.0",
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/client-preset": "^4.8.0",
"@graphql-codegen/fragment-matcher": "^5.1.0",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-resolvers": "^4.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@parcel/watcher": "^2.5.1",
"@playwright/test": "^1.51.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.20",
"@types/express": "^5.0.1",
"@types/express-serve-static-core": "^5.0.6",
"@types/node": "^22.14.1",
"@vitest/eslint-plugin": "^1.1.42",
"eslint": "9.24.0",
"express": "^5.1.0",
"knip": "^5.50.2",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"smee-client": "^3.1.1",
"turbo": "^2.5.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.29.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@apollo/protobufjs",
"@parcel/watcher",
"@sentry/cli",
"@swc/core",
"esbuild",
"odiff-bin",
"sharp"
],
"overrides": {
"express": "$express",
"@types/express": "$@types/express",
"@types/express-serve-static-core": "$@types/express-serve-static-core"
}
}
}