-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.38 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 3.38 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
{
"name": "synthstack",
"version": "1.0.0",
"description": "SynthStack Community Edition - Source-Available SaaS Boilerplate",
"license": "SEE LICENSE IN LICENSE",
"author": "Manic Inc. <[email protected]>",
"homepage": "https://synthstack.app",
"repository": {
"type": "git",
"url": "https://github.com/manicinc/synthstack"
},
"bugs": "https://github.com/manicinc/synthstack/issues",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm -r --parallel --if-present dev",
"dev:lite": "ENABLE_COPILOT=true ENABLE_COPILOT_RAG=false ENABLE_AI_AGENTS=false ENABLE_REFERRALS=false VITE_SYNTHSTACK_EDITION=community VITE_ENABLE_COPILOT=true VITE_ENABLE_COPILOT_RAG=false VITE_ENABLE_AI_AGENTS=false VITE_ENABLE_REFERRALS=false pnpm dev",
"dev:pro": "ENABLE_COPILOT=true ENABLE_COPILOT_RAG=true ENABLE_AI_AGENTS=true ENABLE_REFERRALS=true VITE_SYNTHSTACK_EDITION=pro VITE_ENABLE_COPILOT=true VITE_ENABLE_COPILOT_RAG=true VITE_ENABLE_AI_AGENTS=true VITE_ENABLE_REFERRALS=true pnpm dev",
"dev:web": "pnpm --filter @synthstack/web dev",
"dev:api": "pnpm --filter @synthstack/api-gateway dev",
"build": "pnpm -r build",
"build:lite": "ENABLE_COPILOT=true ENABLE_COPILOT_RAG=false ENABLE_AI_AGENTS=false ENABLE_REFERRALS=false VITE_SYNTHSTACK_EDITION=community VITE_ENABLE_COPILOT=true VITE_ENABLE_COPILOT_RAG=false VITE_ENABLE_AI_AGENTS=false VITE_ENABLE_REFERRALS=false pnpm build",
"build:pro": "ENABLE_COPILOT=true ENABLE_COPILOT_RAG=true ENABLE_AI_AGENTS=true ENABLE_REFERRALS=true VITE_SYNTHSTACK_EDITION=pro VITE_ENABLE_COPILOT=true VITE_ENABLE_COPILOT_RAG=true VITE_ENABLE_AI_AGENTS=true VITE_ENABLE_REFERRALS=true pnpm build",
"build:web": "pnpm --filter @synthstack/web build",
"build:api": "pnpm --filter @synthstack/api-gateway build",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"test": "ENABLE_COPILOT=true ENABLE_AI_AGENTS=false ENABLE_COPILOT_RAG=false ENABLE_REFERRALS=false ENABLE_WORKFLOWS=false pnpm --filter @synthstack/web test",
"test:web": "pnpm --filter @synthstack/web test",
"test:api": "pnpm --filter @synthstack/api-gateway test",
"test:coverage": "pnpm --filter @synthstack/web test:coverage",
"test:e2e": "pnpm --filter @synthstack/web test:e2e",
"test:e2e:ui": "pnpm --filter @synthstack/web test:e2e:ui",
"test:all": "pnpm test && pnpm test:e2e",
"test:features": "pnpm -r test -- __tests__/features",
"test:count": "node scripts/count-tests.js",
"test:count:update": "node scripts/count-tests.js --update",
"docker:up": "docker compose -f docker-compose.community.yml up -d",
"docker:down": "docker compose -f docker-compose.community.yml down",
"docker:logs": "docker compose -f docker-compose.community.yml logs -f",
"docker:build": "docker compose -f docker-compose.community.yml build",
"db:migrate": "pnpm --filter @synthstack/api-gateway db:migrate",
"db:seed": "pnpm --filter @synthstack/api-gateway db:seed",
"clean": "pnpm -r clean && rm -rf node_modules",
"generate:env": "npx tsx scripts/generate-env.ts"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@fastify/static": "^9.0.0",
"@sentry/node": "^10.32.1",
"argon2": "^0.44.0",
"electron": "28.3.3"
}
}