-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "export NODE_ENV=development; bun run build",
"lint": "turbo lint:fmt lint:css lint:js lint:ts",
"lint:css": "stylelint '**/*.{css,xcss}'",
"lint:fmt": "biome check",
"lint:js": "eslint",
"lint:ts": "tsc --build --noEmit",
"test": "bun test --only-failures",
"test:ci": "bun test --coverage --randomize --rerun-each=3",
"test:node": "uvu packages '\\/test\\/.+\\.test-node\\.js$'",
"test:node:c8": "c8 npm run test:node"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@eslint/js": "10.0.1",
"@maxmilton/eslint-config": "0.3.0",
"@maxmilton/stylelint-config": "0.4.2",
"@maxmilton/test-utils": "0.0.14",
"@types/bun": "1.3.11",
"@types/node": "25.5.0",
"c8": "10.1.3",
"ekscss": "workspace:*",
"eslint": "10.1.0",
"eslint-plugin-unicorn": "64.0.0",
"postcss-ekscss": "workspace:*",
"stylelint": "17.6.0",
"stylelint-config-standard": "40.0.0",
"turbo": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.2",
"uvu": "0.5.6"
},
"packageManager": "bun@1.99.0"
}