-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "taskflow",
"private": true,
"workspaces": ["client", "server", "blockchain"],
"scripts": {
"dev": "concurrently \"npm run dev -w server\" \"npm run dev -w client\"",
"dev:server": "npm run dev -w server",
"dev:client": "npm run dev -w client",
"build": "npm run build -w server && npm run build -w client",
"db:generate": "npm run db:generate -w server",
"db:migrate": "npm run db:migrate -w server",
"db:push": "npm run db:push -w server",
"chain:compile": "npm run compile -w blockchain",
"chain:test": "npm run test -w blockchain",
"chain:node": "npm run node -w blockchain",
"chain:deploy": "npm run deploy:local -w blockchain"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}