-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.88 KB
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
{
"name": "publit-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --quiet",
"typecheck": "tsc --noEmit -p tsconfig.json",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^3.24.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@tanstack/react-query": "^5.83.0",
"@tiptap/extension-character-count": "^3.1.0",
"@tiptap/extension-horizontal-rule": "^3.0.9",
"@tiptap/extension-image": "^3.0.9",
"@tiptap/extension-link": "^3.0.9",
"@tiptap/extension-placeholder": "^3.2.0",
"@tiptap/extension-table": "^3.0.9",
"@tiptap/extension-table-cell": "^3.0.9",
"@tiptap/extension-table-header": "^3.0.9",
"@tiptap/extension-table-row": "^3.0.9",
"@tiptap/pm": "^3.0.9",
"@tiptap/react": "^3.0.9",
"@tiptap/starter-kit": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"framer-motion": "^12.23.12",
"lucide-react": "^0.536.0",
"next": "15.4.5",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"react-intersection-observer": "^9.16.0",
"react-responsive": "^10.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tanstack/react-query-devtools": "^5.85.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-responsive": "^8.0.8",
"eslint": "^9",
"eslint-config-next": "15.4.5",
"husky": "^8.0.0",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"typescript": "^5"
}
}