-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.96 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
{
"name": "gdg-pup-platform",
"private": true,
"scripts": {
"dev": "turbo run dev --filter=!identity-api... --filter=!@packages/identity-api-contracts",
"dev:nexus-api": "turbo dev --filter=nexus-api... --filter=nexus-admin-web...",
"dev:storybook": "turbo dev --filter=storybook...",
"benchmark:api": "pnpm --filter nexus-api run benchmark",
"build": "turbo run build --filter=!storybook --filter=!identity-api",
"build:nexus": "turbo build --filter=nexus-api... --filter=nexus-web...",
"build:dev": "pnpm build && make dev-build",
"build:staging": "pnpm build && make staging-build",
"build:prod": "pnpm build && make prod-build",
"start": "turbo run start --filter=!identity-api...",
"clean": "tsx scripts/clean.ts",
"gen-types": "turbo run gen-types --filter=!identity-api... --filter=!@packages/identity-api-contracts",
"gen-types:rebuild": "pnpm gen-types && pnpm build:nexus",
"lint": "turbo run lint --filter=!identity-api",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "turbo run test --filter=!identity-api",
"scan:dep": "tsx scripts/deprecated-scanner/deprecated-scanner.ts",
"gcs:test": "tsx --env-file=apps/nexus-api/.env scripts/gcs-local-test.ts",
"gcs:test:keep": "tsx --env-file=apps/nexus-api/.env scripts/gcs-local-test.ts --keep",
"article:seen": "tsx --env-file=apps/nexus-api/.env scripts/publish-seen-article.ts"
},
"devDependencies": {
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"prettier": "3.7.4",
"syncpack": "13.0.4",
"turbo": "2.7.4",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@google-cloud/storage": "^7.19.0",
"@supabase/supabase-js": "^2.98.0",
"clsx": "^2.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"rimraf": "^6.1.3",
"tailwind-merge": "^3.4.0",
"tsx": "^4.21.0"
}
}