-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 4.29 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 4.29 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
69
70
71
72
73
74
{
"name": "waynode",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "concurrently -n server,web -c blue,green \"npm run dev:server\" \"npm run dev:frontend\"",
"dev:server": "node --watch server.js",
"dev:frontend": "cd frontend && npm run dev",
"build:frontend": "cd frontend && npm run build",
"start": "cross-env NODE_ENV=production node server.js",
"typecheck": "cd frontend && npx tsc --noEmit",
"test:auth": "node e2e/test-native-auth.mjs",
"test:oauth-tokens": "node e2e/test-oauth-token-encryption.mjs",
"test:deploy-contract": "node e2e/test-deploy-contract.mjs",
"test:account-deletion": "node e2e/test-account-deletion.mjs",
"test:billing": "node e2e/test-billing.mjs",
"test:billing-reservations": "node e2e/test-billing-reservations.mjs",
"test:billing-hammersmith": "node e2e/test-billing-hammersmith.mjs",
"test:app-store": "node e2e/test-app-store.mjs",
"test:content": "node e2e/test-content.mjs",
"test:public-trust": "node e2e/test-public-trust.mjs",
"test:terminal": "node e2e/test-terminal-billing.mjs",
"test:terminal-capability": "node e2e/test-terminal-capability.mjs",
"test:sandbox-terminal": "node e2e/test-sandbox-terminal.mjs",
"test:sandbox-queue": "node e2e/test-sandbox-queue.mjs",
"test:agent-submissions": "node e2e/test-agent-submission-truth.mjs && node e2e/test-session-submission-state.mjs",
"test:sandbox-security": "node e2e/test-sandbox-security.mjs",
"test:hosted-git-credentials": "node e2e/test-hosted-git-credentials.mjs",
"test:git-discard": "node e2e/test-git-discard.mjs",
"test:clone-policy": "node e2e/test-clone-policy.mjs",
"test:space-authorization": "node e2e/test-space-authorization.mjs",
"test:trial-eligibility": "node e2e/test-trial-eligibility.mjs",
"test:provider": "node e2e/test-provider-config.mjs",
"test:session-store": "node e2e/test-session-store.mjs",
"test:session-history": "node e2e/test-session-history.mjs",
"test:session-sse": "node e2e/test-session-sse.mjs",
"test:hammersmith": "node e2e/test-hammersmith.mjs",
"test:session-lifecycle": "node e2e/test-session-lifecycle.mjs",
"test:stream-reconnect": "node e2e/test-session-stream-reconnect.mjs",
"test:billing-edges": "node e2e/test-billing-edges.mjs",
"test:design-language": "node e2e/test-design-language.mjs",
"test:onboarding-states": "node e2e/test-onboarding-states.mjs",
"test:a11y-contract": "node e2e/test-a11y-contract.mjs",
"test:composer-behaviors": "node e2e/test-composer-behaviors.mjs",
"check:file-lengths": "node scripts/check-file-lengths.mjs",
"test": "npm run check:file-lengths && npm run test:auth && npm run test:oauth-tokens && npm run test:deploy-contract && npm run test:account-deletion && npm run test:billing && npm run test:billing-reservations && npm run test:billing-hammersmith && npm run test:app-store && npm run test:content && npm run test:public-trust && npm run test:terminal && npm run test:terminal-capability && npm run test:sandbox-terminal && npm run test:sandbox-queue && npm run test:agent-submissions && npm run test:sandbox-security && npm run test:hosted-git-credentials && npm run test:git-discard && npm run test:clone-policy && npm run test:space-authorization && npm run test:trial-eligibility && npm run test:provider && npm run test:session-store && npm run test:session-history && npm run test:session-sse && npm run test:hammersmith && npm run test:session-lifecycle && npm run test:stream-reconnect && npm run test:billing-edges && npm run test:design-language && npm run test:onboarding-states && npm run test:a11y-contract && npm run test:composer-behaviors && npm run typecheck"
},
"dependencies": {
"@ai-sdk/openai": "^4.0.11",
"ai": "^7.0.20",
"cookie-parser": "1.4.7",
"cors": "2.8.6",
"dotenv": "17.4.2",
"express": "5.2.1",
"express-rate-limit": "8.5.2",
"express-session": "1.19.0",
"helmet": "8.2.0",
"marked": "^18.0.6",
"microsandbox": "^0.6.6",
"multer": "^2.2.0",
"node-pty": "1.1.0",
"passport": "0.7.0",
"passport-github2": "0.1.12",
"passport-gitlab2": "5.0.0",
"stripe": "^22.3.1",
"uuid": "14.0.1",
"ws": "8.21.0"
},
"devDependencies": {
"concurrently": "10.0.3",
"cross-env": "10.1.0"
}
}