-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 KB
/
package.json
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
64
65
66
67
68
{
"author": "Phil Parsons",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run -r build",
"clean": "pnpm run -r clean",
"dev": "pnpm run --filter=examples dev",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint-staged": "lint-staged",
"prepare": "husky",
"release": "changeset publish",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,tsx,json}": [
"prettier --write",
"eslint --fix"
],
"*.{md,html}": [
"prettier --write"
]
}
}