-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.66 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 2.66 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
{
"name": "@supercorp/supercompat",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo run build --force -- --watch",
"lint": "turbo run lint --force",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "npx env-cmd -f .env npx tsx scripts/runTests.ts",
"test:sequential": "npx env-cmd -f .env npx tsx --tsconfig tsconfig.test.json --test --test-concurrency=1 --test-force-exit \"packages/supercompat/tests/**/*.test.ts\"",
"setup:prisma": "createdb supercompat_test || true && DATABASE_URL=postgresql://postgres:postgres@localhost:5432/supercompat_test npx prisma db push --accept-data-loss --skip-generate --schema packages/supercompat/prisma/schema.prisma && DATABASE_URL=postgresql://postgres:postgres@localhost:5432/supercompat_test npx prisma generate --schema packages/supercompat/prisma/schema.prisma && cp -R node_modules/@prisma packages/node_modules/",
"setup:prisma:reset": "createdb supercompat_test || true && DATABASE_URL=postgresql://postgres:postgres@localhost:5432/supercompat_test npx prisma migrate reset --force --skip-seed --skip-generate --schema packages/supercompat/prisma/schema.prisma && DATABASE_URL=postgresql://postgres:postgres@localhost:5432/supercompat_test npx prisma db push --accept-data-loss --skip-generate --schema packages/supercompat/prisma/schema.prisma && DATABASE_URL=postgresql://postgres:postgres@localhost:5432/supercompat_test npx prisma generate --schema packages/supercompat/prisma/schema.prisma && cp -R node_modules/@prisma packages/node_modules/",
"setup:prisma:deploy": "createdb supercompat_test || true && DATABASE_URL=postgresql://postgres:postgres@localhost:5432/supercompat_test npx prisma migrate deploy --skip-generate --schema packages/supercompat/prisma/schema.prisma && DATABASE_URL=postgresql://postgres:postgres@localhost:5432/supercompat_test npx prisma generate --schema packages/supercompat/prisma/schema.prisma && cp -R node_modules/@prisma packages/node_modules/"
},
"devDependencies": {
"@azure/ai-projects": "^1.0.1",
"@azure/ai-projects-v2": "npm:@azure/ai-projects@2.0.0-alpha.20251223.1",
"@azure/identity": "^4.13.0",
"@google/genai": "^1.41.0",
"@swc/core": "^1.13.5",
"@types/node": "^24.9.1",
"https-proxy-agent": "^7.0.6",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"prettier": "^3.6.2",
"react": "^19.2.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@11.6.2",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@openrouter/sdk": "^0.8.0",
"@prisma/client": "^6.19.1"
}
}