-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 872 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 872 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
27
28
29
30
31
{
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@cucumber/cucumber": "^12.7.0",
"fast-check": "^4.6.0",
"publint": "^0.3.18",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"ultracite": "^7.3.2",
"vitest": "^4.1.1"
},
"name": "bun-workspace",
"private": true,
"scripts": {
"bdd": "node --import tsx ./node_modules/@cucumber/cucumber/bin/cucumber-js --import 'features/step_definitions/**/*.ts'",
"build": "bun run --filter '*' build",
"format": "bun run --filter '*' format",
"lint": "bun run --filter '*' lint",
"publint": "bun run --filter 'packages/*' publint",
"test": "bun run --filter '*' test",
"test:all": "bun run test && bun run bdd",
"typecheck": "bun run --filter '*' typecheck"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"undici": "^8.0.0"
}
}