-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
77 lines (77 loc) · 2.63 KB
/
package.json
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
75
76
77
{
"name": "playbook-workflow-builder",
"version": "0.71.3",
"description": "A repository for the playbook workflow builder collaboration.",
"private": true,
"workspaces": [
"./app",
"./components/**"
],
"bin": {
"pwb": "cli/pwb.ts"
},
"scripts": {
"build": "npm --workspace=app run build",
"codegen:apis": "ts-node cli/sync-api-import.ts",
"codegen:citations": "ts-node cli/build-citations.ts",
"codegen:components": "ts-node cli/sync-component-import.ts",
"codegen:icons": "python cli/convert-icons.py icons/services/src icons/services/index.ts",
"codegen:requirements": "ts-node cli/enumerate-requirements.ts",
"codegen:sql": "mkdir -p db/migrations && ts-node cli/build-sql.ts > db/migrations/00_init.sql",
"codegen:table": "ts-node cli/build-table.ts > metanodes.tsv",
"codegen:use-case-table": "ts-node cli/build-use-case-table.ts > use-cases.tsv",
"codegen:analytics": "ts-node cli/dump-analytics.ts > analytics.tsv",
"dev": "npm run --workspace=app dev",
"start:worker": "NODE_ENV=production APP_ROOT=$(dirname $(pwd)) ts-node cli/resolve-process-worker.ts",
"start:run-wes-worker": "ts-node cli/run-wes-worker.ts",
"start": "npm run --workspace=app start",
"version": "ts-node cli/version-compose.ts && git add docker-compose.yaml && docker-compose build --parallel",
"postversion": "docker-compose push"
},
"dependencies": {
"@blueprintjs/core": "^5.10.2",
"@blueprintjs/icons": "^5.9.0",
"@blueprintjs/select": "^5.1.4",
"@blueprintjs/table": "^5.1.4",
"@mdi/js": "^7.4.47",
"@socket.io/postgres-adapter": "^0.3.1",
"@types/pluralize": "^0.0.33",
"axios": "^1.6.8",
"classnames": "^2.5.1",
"cmd-ts": "^0.13.0",
"fast-sha256": "^1.3.0",
"form-data": "^4.0.0",
"glob": "^10.3.15",
"immutable": "^4.3.6",
"json-canonicalize": "^1.0.6",
"jszip": "^3.10.1",
"openai": "^4.47.1",
"pg": "^8.11.5",
"pg-boss": "^9.0.3",
"pg-listen": "^1.7.0",
"pg-query-stream": "^4.5.5",
"pluralize": "^8.0.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-error-boundary": "^4.0.13",
"swr": "^2.2.5",
"ts-dedent": "^2.2.0",
"yaml": "^2.4.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20.12.12",
"@types/node-fetch": "^2.6.11",
"@types/pg": "^8.11.6",
"@types/react": "^18.3.2",
"commander": "^12.0.0",
"concurrently": "^8.2.2",
"next": "^14.2.5",
"next-transpile-modules": "^10.0.1",
"ssl-proxy": "^1.0.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
}
}