-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "shopping-cart",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest --watchAll",
"ci:test": "jest --watchAll=false",
"lint": "eslint ./src",
"commit": "git-cz",
"postinstall": "husky install"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@headlessui/react": "^1.7.12",
"@reduxjs/toolkit": "^1.9.3",
"axios": "^1.3.4",
"jest-environment-jsdom": "^29.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.2",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-loading-skeleton": "^3.1.1",
"react-redux": "^8.0.5",
"react-redux-loading-bar": "^5.0.4",
"react-router-dom": "^6.8.1",
"react-tooltip": "^5.8.3",
"redux-persist": "^6.0.0",
"swr": "^2.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.39.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"jest": "^29.4.3",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}