-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.13 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
{
"name": "sinzak-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --ignore-path .gitignore --check \"./**/*.{ts,tsx}\"",
"prettier:fix": "prettier --ignore-path .gitignore --write \"./**/*.{ts,tsx}\"",
"format": "yarn prettier:fix && yarn lint:fix"
},
"dependencies": {
"@datastructures-js/priority-queue": "^6.2.0",
"@ebay/nice-modal-react": "^1.2.9",
"@egjs/flicking-plugins": "^4.7.0",
"@egjs/react-flicking": "^4.10.8",
"@headlessui/react": "^1.7.13",
"@headlessui/tailwindcss": "^0.1.2",
"@radix-ui/react-checkbox": "^1.0.3",
"@stomp/stompjs": "^6.1.2",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"@tanstack/react-virtual": "3.0.0-beta.54",
"@types/node": "18.15.7",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.4.14",
"banditypes": "^0.2.5",
"class-variance-authority": "^0.4.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"immer": "^9.0.21",
"jotai": "^2.0.3",
"lodash-es": "^4.17.21",
"next": "13.2.4",
"next-auth": "^4.20.1",
"next-seo": "^5.15.0",
"postcss": "^8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.7",
"react-intersection-observer": "^9.4.3",
"react-loading-skeleton": "^3.2.0",
"react-query-kit": "^1.4.1",
"react-textarea-autosize": "^8.4.1",
"sharp": "^0.31.3",
"sockjs-client": "^1.6.1",
"sonner": "^0.3.0",
"tailwind-merge": "^1.10.0",
"tailwindcss": "^3.2.7",
"typescript": "5.0.2",
"use-breakpoint": "^3.0.7"
},
"packageManager": "yarn@3.3.1",
"devDependencies": {
"@svgr/webpack": "^7.0.0",
"@types/lodash-es": "^4.17.7",
"@types/sockjs-client": "^1.5.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"file-loader": "^6.2.0",
"next-sitemap": "^4.0.6",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5"
}
}