-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.43 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "rr-legal-articles",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "18.x"
},
"scripts": {
"prepare": "husky install",
"dev": "vite",
"preview": "vite preview",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:check": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:write": "eslint --fix . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format:check": "prettier --check './**/*.{js,jsx,ts,tsx,css,md,json,scss}' --config ./.prettierrc.json",
"format:write": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json,scss}' --config ./.prettierrc.json",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest run --passWithNoTests --watch",
"test:ui": "vitest --ui"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"axios": "^1.6.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"date-fns": "^3.2.0",
"headless-pagination": "^0.1.3",
"headless-pagination-react": "^0.1.4",
"html-react-parser": "^5.1.1",
"localforage": "^1.10.0",
"lodash.get": "^4.4.2",
"lucide-react": "^0.309.0",
"match-sorter": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-quill": "^2.0.0",
"react-router-dom": "^6.21.2",
"sort-by": "^1.2.0",
"swr": "^2.2.4",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^2.9.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.11.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-vitest": "^0.3.20",
"husky": "^8.0.0",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-checker": "^0.6.2",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix",
"vitest run --passWithNoTests"
],
"*.{json,js,ts,jsx,tsx,md}": [
"prettier --write --ignore-unknown"
]
},
"jest": {
"testEnvironment": "node"
}
}