-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"private": true,
"workspaces": [
"packages/*",
"workers/*"
],
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "export NODE_ENV=development; bun run build",
"lint": "turbo lint:css lint:fmt lint:js lint:js2 lint:ts",
"lint:css": "stylelint '**/*.{css,xcss}'",
"lint:fmt": "biome check",
"lint:js": "oxlint --ignore-path=.gitignore --report-unused-disable-directives --format=stylish --type-aware",
"lint:js2": "eslint",
"lint:ts": "tsc --build --noEmit",
"test": "bun test --only-failures",
"test:ci": "bun test --coverage --randomize --rerun-each=3",
"typegen": "turbo typegen"
},
"overrides": {
"@types/node": "25.0.3"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@cloudflare/workers-types": "4.20260101.0",
"@eslint/js": "9.39.2",
"@maxmilton/eslint-config": "0.3.0",
"@maxmilton/oxlint-config": "0.0.1",
"@maxmilton/stylelint-config": "0.4.2",
"@maxmilton/test-utils": "0.0.14",
"@types/bun": "1.3.5",
"eslint": "9.39.2",
"eslint-plugin-oxlint": "1.36.0",
"eslint-plugin-unicorn": "62.0.0",
"happy-dom": "20.0.11",
"oxlint": "1.36.0",
"oxlint-tsgolint": "0.10.0",
"stylelint": "16.26.1",
"stylelint-config-standard": "39.0.1",
"turbo": "2.7.2",
"typescript": "5.9.3",
"typescript-eslint": "8.51.0",
"wrangler": "4.54.0"
},
"packageManager": "bun@1.99.0"
}