-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.48 KB
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
32
{
"name": "kong",
"version": "1.0.0",
"repository": "git@github.com:yearn/kong.git",
"author": "murderteeth <murdertxxth@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rm -rf node_modules packages/**/node_modules packages/**/dist packages/**/.next",
"lint:ingest": "bun run --elide-lines 0 --filter ingest lint",
"lint:fix:ingest": "bun run --elide-lines 0 --filter ingest lint --fix",
"lint:lib": "bun run --elide-lines 0 --filter lib lint",
"lint:fix:lib": "bun run --elide-lines 0 --filter lib lint --fix",
"lint:terminal": "bun run --elide-lines 0 --filter terminal lint",
"lint:fix:terminal": "bun run --elide-lines 0 --filter terminal lint --fix",
"lint:web": "bun run --elide-lines 0 --filter web lint",
"lint:fix:web": "bun run --elide-lines 0 --filter web lint --fix",
"lint": "bun run --elide-lines 0 --filter ingest lint && bun run --elide-lines 0 --filter lib lint && bun run --elide-lines 0 --filter terminal lint && bun run --elide-lines 0 --filter web lint",
"lint:fix": "bun run --elide-lines 0 --filter ingest lint --fix && bun run --elide-lines 0 --filter lib lint --fix && bun run --elide-lines 0 --filter terminal lint --fix && bun run --elide-lines 0 --filter web lint --fix"
},
"devDependencies": {
"@testcontainers/postgresql": "10.18.0",
"@testcontainers/redis": "10.18.0",
"bun-types": "1.2.2"
},
"dependencies": {
"@types/bun": "1.2.2"
}
}