-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.76 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "bettermint",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"clsx": "^1.1.1",
"daisyui": "^2.39.1",
"jest-playwright-preset": "^2.0.0",
"postcss": "^8.4.19",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-loading": "^2.0.3",
"react-location": "^3.3.4",
"swr": "^1.3.0",
"tailwindcss": "^3.2.4"
},
"scripts": {
"build:tailwind": "tailwindcss build -i src/styles/tailwind.css -o src/styles/tailwind.output.css",
"prestart": "npm run build:tailwind",
"prebuild": "npm run build:tailwind",
"dev": "vite",
"build": "tsc && vite build",
"coverage": "npm run test -- --coverage",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "storybook test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"plugins": [
"react-hooks"
],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "off"
},
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@storybook/addon-actions": "^7.0.0-beta.12",
"@storybook/addon-coverage": "^0.0.5",
"@storybook/addon-essentials": "^7.0.0-beta.12",
"@storybook/addon-interactions": "^7.0.0-beta.12",
"@storybook/addon-links": "^7.0.0-beta.12",
"@storybook/builder-vite": "^7.0.0-beta.12",
"@storybook/jest": "^0.0.10",
"@storybook/node-logger": "^7.0.0-beta.12",
"@storybook/react": "^7.0.0-beta.12",
"@storybook/react-vite": "^7.0.0-alpha.25",
"@storybook/test-runner": "^0.10.0-next.2",
"@storybook/testing-library": "^0.0.14-next.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"babel-plugin-named-exports-order": "^0.0.2",
"jest": "29.3.1",
"msw": "^0.48.1",
"prop-types": "^15.8.1",
"storybook": "^7.0.0-beta.12",
"typescript": "^4.8.4",
"vite": "^4.0.1"
},
"resolutions": {
"jest-playwright-preset": "^1.7.2"
}
}