forked from maiano/eCommerce-Application
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.31 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.31 KB
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
{
"name": "ecommerce-application",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"ci:format": "prettier --check .",
"format": "prettier --write .",
"build": "vite build",
"lint": "eslint ./src",
"lint:fix": "eslint --fix --color ./src",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@commercetools/platform-sdk": "^8.8.0",
"@commercetools/sdk-client-v2": "^3.0.0",
"@hookform/resolvers": "^5.0.1",
"@mantine/carousel": "^7.17.5",
"@mantine/core": "^7.17.5",
"@mantine/dates": "^7.17.5",
"@mantine/form": "^7.17.5",
"@mantine/hooks": "^7.17.5",
"@mantine/notifications": "^7.17.5",
"framer-motion": "^12.9.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.56.1",
"react-router-dom": "^7.6.0",
"swr": "^2.3.3",
"zod": "^3.24.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.22.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/isomorphic-fetch": "^0.0.39",
"@types/node": "^22.15.2",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.2",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"isomorphic-fetch": "^3.0.0",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.1",
"node-fetch": "^3.3.2",
"prettier": "^3.5.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1",
"vitest": "^3.1.2"
},
"lint-staged": {
"*.{json, md, css, scss}": "prettier --list-different --ignore-unknown",
"*.{cjs,js,mjs,jsx,ts,tsx}": "eslint"
}
}