-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.3 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
{
"name": "commonstate",
"version": "0.2.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"author": "Shivansh Gupta",
"license": "BUSL-1.1",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"test": "npm run build && node --test tests/*.test.mjs",
"test:contracts": "node --test tests/*.test.mjs",
"test:platform": "node --test tests/platform-foundations.test.mjs",
"test:product": "node --test tests/product-backend.test.mjs tests/product-client-contract.test.mjs tests/product-storage.test.mjs tests/workos-directory-health.test.mjs",
"test:e2e": "npm run build && npm run test:e2e:live",
"test:e2e:live": "playwright test --config playwright.config.ts",
"playwright:install": "playwright install --with-deps chromium",
"typecheck": "tsc --noEmit --pretty false",
"typecheck:workspaces": "npm run typecheck --workspaces --if-present",
"lint": "eslint . --ignore-pattern .next",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"deploy:dedicated:plan": "node scripts/plan-dedicated-deployment.mjs",
"deploy:dedicated:verify": "node scripts/plan-dedicated-deployment.mjs deploy/dedicated/manifest.example.json",
"worker:start": "npm run start --workspace @commonstate/worker"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.111.0",
"@google/genai": "^2.11.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@slack/web-api": "^8.0.0",
"@supabase/ssr": "^0.12.3",
"@supabase/supabase-js": "^2.110.5",
"@workos-inc/node": "^10.7.0",
"ajv": "^8.20.0",
"drizzle-orm": "0.45.2",
"googleapis": "^173.0.0",
"next": "16.2.6",
"openai": "^6.47.0",
"postgres": "3.4.7",
"react": "19.2.6",
"react-dom": "19.2.6",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@lhci/cli": "0.15.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "4.2.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"drizzle-kit": "0.31.10",
"eslint": "9.39.4",
"eslint-config-next": "16.2.6",
"tailwindcss": "4.2.1",
"tsx": "4.22.1",
"typescript": "5.9.3"
},
"type": "module"
}