forked from sabinadams/testing_mono_repo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 664 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 664 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
{
"name": "testing_mono_repo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"checks": "pnpm run -r checks",
"startup": "./scripts/db-startup.sh && pnpm run -r dev",
"test:backend:int": "pnpm run --filter=backend test:int",
"test:backend:unit": "pnpm run --filter=backend test:unit",
"test:e2e": "pnpm run --filter=e2e test",
"test:e2e:headed": "pnpm run --filter=e2e test:headed"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.11.0",
"husky": "^8.0.2"
},
"devDependencies": {
"prisma": "^4.11.0"
}
}