-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.35 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.35 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "e-commerce",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:4000": "next dev --port=4000",
"build": "next build",
"start": "next start",
"ci:lint": "eslint --max-warnings 0 --fix",
"ci:format": "prettier -luw",
"ci:stylelint": "stylelint --mw 0 --fix",
"lint": "npm run ci:lint -- .",
"format": "npm run ci:format -- .",
"stylelint": "npm run ci:stylelint -- src/**/*.css",
"fix": "npm run lint && npm run stylelint && npm run format",
"typecheck": "tsc",
"commitlint": "commitlint --edit",
"lint-staged": "lint-staged",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"prepare": "husky"
},
"dependencies": {
"@emotion/cache": "11.13.0",
"@emotion/react": "11.13.0",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.13.0",
"@hookform/resolvers": "3.9.0",
"@mui/icons-material": "5.16.4",
"@mui/material": "5.16.4",
"@mui/material-nextjs": "5.16.4",
"@mui/x-date-pickers": "7.11.0",
"@tanstack/react-query": "5.51.11",
"@tanstack/react-query-devtools": "5.51.11",
"axios": "1.7.2",
"clsx": "2.1.1",
"dayjs": "1.11.12",
"next": "14.2.5",
"postcode-validator": "3.8.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "4.0.13",
"react-hook-form": "7.52.1",
"react-toastify": "10.0.5",
"swiper": "11.1.5",
"use-debounce": "10.0.1",
"zod": "3.23.8",
"zustand": "4.5.4"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@eslint/js": "9.7.0",
"@feature-sliced/eslint-config": "0.1.1",
"@feature-sliced/eslint-plugin-messages": "0.1.0-beta.2",
"@next/env": "14.2.5",
"@next/eslint-plugin-next": "14.2.5",
"@stylistic/eslint-plugin-ts": "2.3.0",
"@tanstack/eslint-plugin-query": "5.51.12",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.4.7",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"@vitejs/plugin-react": "4.3.1",
"@vitest/coverage-v8": "2.0.4",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-boundaries": "4.2.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest-dom": "5.4.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-testing-library": "6.2.2",
"eslint-plugin-vitest": "0.5.4",
"husky": "9.1.1",
"jsdom": "24.1.1",
"lint-staged": "15.2.7",
"msw": "2.3.2",
"next-router-mock": "0.9.13",
"postcss": "8.4.39",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.5",
"stylelint": "16.7.0",
"stylelint-config-clean-order": "6.1.0",
"stylelint-config-standard": "36.0.1",
"tailwindcss": "3.4.6",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"typescript-eslint": "7.17.0",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.4"
}
}