-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.89 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
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:strict": "next lint --max-warnings 0",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@tanstack/react-query": "^4.20.4",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"auto-zustand-selectors-hook": "^2.0.0",
"axios": "^1.2.1",
"clsx": "^1.2.1",
"cssnano": "^5.1.14",
"eslint": "^8.30.0",
"immer": "^9.0.16",
"next": "13.1.1",
"next-seo": "^5.15.0",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.42.1",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-image-lightbox": "^5.1.4",
"swiper": "^9.1.0",
"tailwind-merge": "^1.8.1",
"typescript": "^4.9.4",
"universal-cookie": "^4.0.4",
"use-local-storage": "^2.3.6",
"zustand": "^4.1.5"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@next/eslint-plugin-next": "^13.1.1",
"@tailwindcss/forms": "^0.5.3",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"autoprefixer": "^10.4.13",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4"
}
}