-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "easy-fix",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"coverage": "vitest --coverage",
"dev": "vite",
"build": "vite build",
"format": "prettier -w .",
"test:watch": "vitest",
"test": "vitest run",
"format:check": "prettier -c .",
"lint": "eslint src --fix --report-unused-disable-directives",
"preview": "vite preview",
"prepare": "husky install",
"typecheck": "tsc"
},
"lint-staged": {
"/src/**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"prettier --write",
"yarn test"
]
},
"dependencies": {
"eslint-plugin-vitest": "^0.3.2",
"lucide-react": "^0.285.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@iconify-icon/react": "^1.0.8",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vitest": "^0.34.6"
}
}