-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"workers/*"
],
"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 --format=stylish",
"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"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@cloudflare/workers-types": "5.20260708.1",
"@eslint/js": "10.0.1",
"@maxmilton/eslint-config": "0.3.3",
"@maxmilton/oxlint-config": "0.0.4",
"@maxmilton/stylelint-config": "0.4.3",
"@maxmilton/test-utils": "0.0.15",
"@types/bun": "1.3.14",
"@types/node": "26.1.1",
"eslint": "10.6.0",
"eslint-plugin-oxlint": "1.73.0",
"eslint-plugin-unicorn": "71.1.0",
"happy-dom": "20.10.6",
"oxlint": "1.73.0",
"stylelint": "17.14.0",
"stylelint-config-standard": "40.0.0",
"turbo": "2.10.4",
"typescript": "6.0.3",
"typescript-eslint": "8.63.0",
"wrangler": "4.108.0"
},
"packageManager": "bun@1.99.0"
}