-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.8 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
{
"name": "complex-celery",
"version": "0.0.2",
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "cross-env TZ=utc VITE_API_BASE_URL=/mock-api jest",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watchAll",
"format": "prettier --write .",
"lint": "yarn eslint --ignore-path .gitignore .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"start": "serve -s dist"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"axios": "^0.24.0",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"framer-motion": "4.1.17",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.24.1",
"react-icons": "^4.3.1",
"react-query": "^3.34.8",
"react-router": "^6.2.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@storybook/addon-a11y": "^6.4.12",
"@storybook/addon-actions": "^6.4.12",
"@storybook/addon-essentials": "^6.4.12",
"@storybook/addon-links": "^6.4.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.12",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest-axe": "^3.5.3",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-preset-vite": "^1.0.4",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.5.5",
"eslint-plugin-testing-library": "^5.0.3",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"jest-axe": "^5.0.1",
"jest-junit": "^13.0.0",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^12.1.7",
"lodash": "^4.17.21",
"msw": "^0.36.4",
"postcss": "^8.4.5",
"prettier": "2.5.1",
"serve": "^13.0.2",
"tailwindcss": "^3.0.13",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vite-plugin-html-env": "^1.0.3"
},
"msw": {
"workerDirectory": "public"
}
}