-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.15 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
{
"name": "donet",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest src",
"lint": "eslint --fix --ext .js,.ts,.tsx ./src --ignore-path .gitignore",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"postinstall": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.3.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@hookform/resolvers": "^2.9.8",
"@supabase/supabase-js": "^2.1.0",
"@tanstack/query-sync-storage-persister": "^4.18.0",
"@tanstack/react-query": "^4.18.0",
"@tanstack/react-query-devtools": "^4.18.0",
"@tanstack/react-query-persist-client": "^4.18.0",
"framer-motion": "^6",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.35.0",
"react-icons": "^4.4.0",
"react-router-dom": "^6.4.2",
"slugify": "^1.6.5",
"zod": "^3.19.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.7.14",
"@types/react": "^18.0.17",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.4",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.1",
"jsdom": "^20.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "*",
"vite": "^4.0.0",
"vitest": "^0.25.7"
},
"lint-staged": {
"src/**/*.{js,ts,tsx,json}": [
"yarn prettier --write"
],
"src/**/*.{js,ts,tsx}": [
"yarn eslint --fix"
]
}
}