-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.21 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.21 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
{
"name": "sf-pulse",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"prettier": {
"semi": false,
"trailingComma": "all",
"singleQuote": true
},
"scripts": {
"postinstall": "node --input-type=commonjs -e \"if (process.env.NODE_ENV !== 'production') require('child_process').execSync('patch-package', {stdio: 'inherit'})\"",
"dev": "ASTRO_TELEMETRY_DISABLED=1 NODE_ENV=development node --env-file-if-exists=.env.local ./node_modules/astro/bin/astro.mjs dev --host 0.0.0.0 --port 5000",
"build": "tsx bin/build.ts",
"fix-live-data": "node --env-file-if-exists=.env.local --import tsx bin/fix-live-data.ts",
"migrate": "node --env-file-if-exists=.env.local --import tsx bin/migrate.ts",
"start": "NODE_ENV=production node dist/server/entry.mjs",
"typecheck": "ASTRO_TELEMETRY_DISABLED=1 node --env-file-if-exists=.env.local ./node_modules/astro/bin/astro.mjs check && tsc --project tsconfig.test.json --noEmit",
"test": "SF_PULSE_TEST_TRANSPORT=in-process HOST=127.0.0.1 NODE_ENV=test node --import tsx/esm --test $(find shared server bin client/src/lib src -name '*.test.ts' | sort | tr '\\n' ' ')"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.92.0",
"@astrojs/node": "^10.0.4",
"@astrojs/react": "^4.0.0",
"@astrojs/tailwind": "^5.1.0",
"@emotion/is-prop-valid": "^1.4.0",
"@renderinc/sdk": "^0.5.1",
"astro": "^6.1.4",
"framer-motion": "^11.0.0",
"ioredis": "^5.10.1",
"openai": "^6.35.0",
"pg": "^8.13.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tailwindcss": "^3.4.0",
"web-push": "^3.6.7",
"workflow-visualizer": "github:render-examples/workflow-visualizer#1813081b70e444f8eb745132aa636608f5fd1abf",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@types/node": "20.19.27",
"@types/pg": "^8.11.10",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^7.2.0",
"@types/web-push": "^3.6.4",
"esbuild": "^0.25.0",
"patch-package": "^8.0.1",
"pg-mem": "^3.0.14",
"supertest": "^7.2.2",
"tsx": "^4.20.5",
"typescript": "5.6.3"
}
}