-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "policyengine-monorepo",
"private": true,
"workspaces": [
"packages/*",
"app",
"website",
"calculator-app"
],
"scripts": {
"dev": "bun run design-system:build && node scripts/dev-server-next.mjs",
"dev:legacy": "bun run design-system:build && bun run --filter=policyengine-app-v2 dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "turbo run format",
"typecheck": "turbo run typecheck",
"check-markdown-drift": "bunx tsx scripts/check-markdown-drift.ts",
"design-system:build": "bun run --filter=@policyengine/design-system build",
"calculator:dev": "bun run --filter=@policyengine/calculator dev",
"website:dev": "bun run --filter=@policyengine/website dev"
},
"devDependencies": {
"jsdom": "^26.1.0",
"turbo": "^2.5.3"
},
"packageManager": "bun@1.2.21",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@policyengine/design-system": "^0.1.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"concurrently": "^9.2.1"
}
}