-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 717 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "invoice-liquidity-network",
"private": true,
"scripts": {
"build:cli": "npm --prefix cli run build",
"test": "npm --prefix sdk test",
"test:cli": "npm --prefix cli test",
"test:frontend": "npm --prefix frontend test",
"test:notifications": "npm --prefix notifications test",
"test:e2e": "vitest run tests/e2e",
"test:coverage": "npm --prefix sdk run test -- --coverage && npm --prefix frontend run test -- --coverage && npm --prefix notifications run test -- --coverage",
"test:all": "npm run test && npm run test:cli && npm run test:frontend && npm run test:notifications"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.5",
"vitest": "^4.1.5"
}
}