forked from MaayanLab/Playbook-Workflow-Builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 861 Bytes
/
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
{
"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",
"dev": "npx --workspace=app next dev",
"prebuild": "ts-node cli/sync-component-import.ts",
"preinstall": "ts-node cli/enumerate-requirements.ts",
"start": "npx --workspace=app next start"
},
"dependencies": {
"fast-sha256": "^1.3.0",
"glob": "^8.0.3",
"next": "^12.3.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^18.8.4",
"@types/react": "^18.0.21",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
}
}