forked from MaayanLab/Playbook-Workflow-Builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.22 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
{
"name": "playbook-partnership",
"version": "1.0.0",
"description": "A repository for the playbook partnership collaboration.",
"private": true,
"workspaces": [
"./app",
"./components/**"
],
"scripts": {
"build": "npx --workspace=app next build",
"codegen:apis": "ts-node -r esm -r tsconfig-paths/register cli/sync-api-import.ts",
"codegen:components": "ts-node cli/sync-component-import.ts",
"codegen:cite": "ts-node -r tsconfig-paths/register cli/add-citation.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 -r tsconfig-paths/register cli/build-sql.ts > db/migrations/00_init.sql",
"codegen:table": "ts-node -r esm -r tsconfig-paths/register cli/build-table.ts > metanodes.tsv",
"dev": "npx --workspace=app next dev",
"dev:ssl": "concurrently \"npm run dev -- -p 3001\" \"ssl-proxy --source 3000 --target 3001\"",
"start:worker": "ts-node -r tsconfig-paths/register cli/resolve-process-worker.ts",
"start:ssl": "concurrently \"npm run start -- -p 3001\" \"ssl-proxy --source 3000 --target 3001\"",
"start": "npx --workspace=app next start"
},
"dependencies": {
"@blueprintjs/core": "^4.13.0",
"@blueprintjs/icons": "^4.11.0",
"@blueprintjs/select": "^4.8.12",
"@blueprintjs/table": "^4.7.10",
"@mdi/js": "^7.1.96",
"@types/pluralize": "^0.0.29",
"classnames": "^2.3.2",
"fast-sha256": "^1.3.0",
"glob": "^8.0.3",
"json-canonicalize": "^1.0.4",
"next": "^12.3.1",
"pg": "^8.8.0",
"pg-boss": "^8.3.0",
"pg-listen": "^1.7.0",
"pg-query-stream": "^4.2.4",
"pluralize": "^8.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"swr": "^2.0.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.3",
"@types/pg": "^8.6.6",
"@types/react": "^18.0.26",
"concurrently": "^7.6.0",
"next": "^12.3.4",
"next-transpile-modules": "^9.1.0",
"ssl-proxy": "^1.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
}
}