-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.23 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 9009",
"build-storybook": "storybook build",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"lint": "npx eslint --ext js,ts,tsx",
"lint:fix": "npx eslint --ext js,ts,tsx --fix",
"prettier": "prettier --check 'src/**/*.{js,jsx,ts,tsx,json,md,graphql,gql}'",
"prettier:fix": "prettier --loglevel warn --write 'src/**/*.{js,jsx,ts,tsx,json,md,graphql,gql}'",
"format": "npm run prettier:fix && npm run lint:fix",
"prepare": "cd .. && husky install ui/.husky"
},
"dependencies": {
"@apollo/client": "^4.0.4",
"@hookform/resolvers": "^4.1.3",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"graphql": "^16.11.0",
"graphql-tag": "^2.12.6",
"motion": "^12.23.12",
"nanoid": "^5.1.5",
"reablocks": "^9.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^6.0.0",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.62.0",
"react-router": "^7.8.2",
"react-use": "^17.6.0",
"yup": "^1.7.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@eslint/js": "^10.0.0",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-docs": "^9.1.5",
"@storybook/addon-essentials": "^9.0.0-alpha.12",
"@storybook/addon-interactions": "^9.0.0-alpha.10",
"@storybook/addon-mdx-gfm": "^9.0.0-alpha.13",
"@storybook/addon-onboarding": "^9.1.5",
"@storybook/addon-storysource": "^9.0.0-alpha.14",
"@storybook/addon-themes": "^9.1.5",
"@storybook/blocks": "^9.0.0-alpha.17",
"@storybook/manager-api": "^9.0.0-alpha.1",
"@storybook/preview-api": "^9.0.0-alpha.1",
"@storybook/react": "^9.1.5",
"@storybook/react-vite": "^9.1.5",
"@storybook/test": "^9.0.0-alpha.2",
"@storybook/theming": "^9.0.0-alpha.1",
"@tailwindcss/postcss": "^4.1.13",
"@types/eslint": "^9.6.1",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^9.1.5",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.6",
"postcss": "^8.5.6",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.3.1",
"prettier": "^3.6.2",
"storybook": "^9.1.5",
"tailwindcss": "^4.1.13",
"typescript": "^5.3.3",
"typescript-eslint": "^8.43.0",
"vite": "^7.1.5",
"vite-plugin-checker": "^0.10.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --ext js,ts,tsx --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,md,graphql,gql}": [
"prettier --write "
]
}
}