forked from zendvolabs/zendvo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 909 Bytes
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
{
"name": "zendvo-monorepo",
"private": true,
"scripts": {
"postinstall": "node scripts/patch-jest-mock.js",
"dev:web": "pnpm --filter web run dev",
"dev:backend": "pnpm --filter backend run dev",
"dev": "concurrently \"pnpm run dev:web\" \"pnpm run dev:backend\"",
"build": "pnpm --filter web run build",
"build:web": "pnpm --filter web run build",
"build:backend": "pnpm --filter backend run build",
"lint": "pnpm --filter web run lint",
"test": "pnpm --filter backend run test",
"tsc": "pnpm --filter web run tsc && pnpm --filter backend run tsc",
"db:migrate": "pnpm --filter backend run db:migrate",
"db:push": "pnpm --filter backend run db:push",
"db:check": "pnpm --filter backend run db:check"
},
"devDependencies": {
"@types/node-cron": "^3.0.11",
"concurrently": "^8.2.2"
},
"dependencies": {
"node-cron": "^4.5.0"
}
}