-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
69
70
71
72
73
74
75
76
77
78
{
"name": "leaderboard",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"dev": "vite",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run src --coverage",
"sb": "storybook dev -p 6006",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook"
},
"dependencies": {
"@storybook/test-runner": "^0.20.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@eslint/js": "^9.16.0",
"@faker-js/faker": "^9.3.0",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-queryparams": "^7.0.1",
"@storybook/blocks": "^8.4.7",
"@storybook/eslint-config-storybook": "^4.0.0",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@tanstack/eslint-plugin-query": "^5.62.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/bun": "^1.1.14",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.15",
"@types/react-dom": "^18.3.4",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "2.1.3",
"axe-playwright": "^2.0.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^0.9.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"msw": "^2.6.8",
"msw-storybook-addon": "^2.0.4",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"vitest-mock-extended": "^2.0.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"msw": {
"workerDirectory": [
"public"
]
}
}