-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "busker-ui",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.25.0",
"engines": {
"node": ">=24.12.0"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test:turbo": "turbo test",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rimraff node_modules",
"prepare": "husky",
"commit": "cz",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/react": "^19.2.7",
"@vitest/ui": "^4.0.16",
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"eslint": "9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"rimraf": "6.1.2",
"tsup": "8.5.1",
"turbo": "2.6.3",
"typescript": "5.9.3",
"typescript-eslint": "8.49.0",
"vitest": "^4.0.16"
},
"config": {
"commitizen": {
"path": "cz-git"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}