-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.64 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": "smile-log",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"preinstall": "husky install"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
"@tanstack/react-query": "^5.36.2",
"@tanstack/react-query-devtools": "^5.36.0",
"@tanstack/react-query-next-experimental": "^5.36.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/typescript-estree": "^7.8.0",
"axios": "^1.6.8",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"jotai": "^2.10.0",
"jotai-immer": "^0.4.1",
"lodash": "^4.17.21",
"next": "14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"react-lottie-player": "^2.0.0",
"react-quill": "^2.0.0",
"react-spinners": "^0.14.1",
"taos": "^1.0.5",
"typescript": "^5.4.5"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@svgr/webpack": "^8.1.0",
"@types/lodash": "^4.17.1",
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}