-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.22 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
{
"name": "memory-mart",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"format": "prettier --write .",
"ci:format": "prettier --check .",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"stylelint": "npx stylelint \"**/*.css\"",
"preview": "vite preview",
"prepare": "husky",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@chakra-ui/media-query": "^3.3.0",
"@chakra-ui/react": "^3.17.0",
"@chakra-ui/transition": "^2.1.0",
"@emotion/react": "^11.14.0",
"@fontsource/dm-sans": "^5.2.5",
"@fontsource/vesper-libre": "^5.2.6",
"@testing-library/jest-dom": "^6.6.3",
"axios": "^1.9.0",
"eslint-plugin-unicorn": "^59.0.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.56.3",
"react-icons": "^5.5.0",
"react-range": "^1.10.0",
"use-debounce": "^10.0.4",
"react-router-dom": "^7.5.3",
"swiper": "^11.2.8"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.22.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.1",
"prettier": "3.5.3",
"stylelint": "^16.19.1",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard": "^38.0.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1",
"vitest": "^3.1.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run format",
"npm run lint:fix"
],
"*.css": [
"npx stylelint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}