-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "rick-and-morty-crm",
"author": {
"name": "Chris Susanto"
},
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "TZ=UTC vitest",
"coverage": "TZ=UTC vitest run --coverage",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/inter": "^5.0.8",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@tanstack/react-query": "^4.33.0",
"@tanstack/react-table": "^8.9.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"dayjs": "^1.11.9",
"lucide-react": "^0.287.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.15.0",
"rickmortyapi": "^2.3.0",
"rooks": "^7.14.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@tanstack/eslint-plugin-query": "^4.32.5",
"@tanstack/react-query-devtools": "^4.33.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^20.5.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^0.34.2",
"autoprefixer": "^10.4.15",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-testing-library": "^6.0.0",
"eslint-plugin-vitest": "^0.3.0",
"husky": "^8.0.3",
"intersection-observer": "^0.12.2",
"jsdom": "^22.1.0",
"nano-staged": "^0.8.0",
"postcss": "^8.4.28",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-checker": "^0.6.1",
"vite-plugin-svgr": "^4.0.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.2"
},
"nano-staged": {
"*": "prettier --write --ignore-unknown",
"*.{ts,tsx}": "yarn lint"
}
}