-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) ยท 3.34 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
{
"dependencies": {
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.59.0",
"axios": "^1.7.7",
"axios-mock-adapter": "^2.1.0",
"date-fns": "^4.1.0",
"favicons": "^7.2.0",
"framer-motion": "^11.11.11",
"husky": "^9.1.6",
"init": "^0.1.2",
"jest": "^29.7.0",
"moment": "^2.30.1",
"msw": "^2.6.0",
"react": "^18.3.1",
"react-calendar": "^5.1.0",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-intersection-observer": "^9.13.1",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.27.0",
"react-spinners": "^0.14.1",
"recharts": "^2.13.0",
"storybook": "^8.3.0",
"styled-components": "^6.1.13",
"webpack-merge": "^6.0.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@chromatic-com/storybook": "1.9.0",
"@emotion/eslint-plugin": "^11.12.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-onboarding": "^8.3.0",
"@storybook/addon-webpack5-compiler-swc": "1.0.5",
"@storybook/blocks": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/react-webpack5": "^8.3.0",
"@storybook/test": "^8.3.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"favicons-webpack-plugin": "^6.0.1",
"html-webpack-plugin": "^5.6.3",
"husky": "^8.0.0",
"msw-storybook-addon": "^2.0.3",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"scripts": {
"dev": "webpack-dev-server --mode=development --open --hot --progress",
"build": "webpack --mode=production --progress",
"start": "webpack --mode=development --progress",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"format": "prettier --cache --write .",
"lint": "eslint --cache .",
"test": "jest"
},
"msw": {
"workerDirectory": [
"public"
]
}
}