-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "shopping-cart",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install",
"test": "vitest",
"test:once": "vitest run",
"cypress:run": "cypress run",
"cypress:open": "cypress open"
},
"dependencies": {
"i18next": "^22.4.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.9.3",
"react-i18next": "^12.1.5",
"react-icons": "^4.7.1",
"react-router-dom": "^6.8.0",
"sonner": "^0.1.1",
"zod": "^3.20.6"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"cypress": "^12.5.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"sass": "^1.58.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
"vite": "^3.2.5",
"vitest": "^0.28.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint",
"npm run format"
],
"*.{css,scss,md,json,yaml}": [
"npm run format"
]
}
}