-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 877 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "m3-bank",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/api",
"packages/web"
],
"scripts": {
"dev:api": "npm --workspace packages/api run dev",
"dev:web": "npm --workspace packages/web run dev",
"dev": "npm run dev:api",
"seed": "npm --workspace packages/api run seed",
"test:e2e": "npm --prefix packages/tests run test:e2e",
"test:api": "npm --prefix packages/tests run test:api",
"test:all": "npm --prefix packages/tests run test:api && npm --prefix packages/tests run test:e2e",
"cleanup": "npm --prefix packages/tests run cleanup",
"cleanup:dry": "npm --prefix packages/tests run cleanup:dry",
"cleanup:report": "npm --prefix packages/tests run cleanup:report",
"start:api": "npm --workspace packages/api run start",
"start:web": "npm --workspace packages/web run start"
}
}