-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.58 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "custom-app-base",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky install",
"lint-staged": "npx lint-staged",
"postinstall": "prisma generate"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mdi/font": "^7.3.67",
"@mdi/js": "^7.3.67",
"@mdi/react": "^1.6.1",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"@prisma/client": "^5.6.0",
"@tippyjs/react": "^4.2.6",
"@tiptap/extension-gapcursor": "^2.1.12",
"@tiptap/extension-hard-break": "^2.1.13",
"@tiptap/extension-image": "^2.1.12",
"@tiptap/extension-link": "^2.1.12",
"@tiptap/extension-mention": "^2.1.13",
"@tiptap/extension-placeholder": "^2.1.13",
"@tiptap/extension-table": "^2.1.12",
"@tiptap/extension-table-cell": "^2.1.12",
"@tiptap/extension-table-header": "^2.1.12",
"@tiptap/extension-table-row": "^2.1.12",
"@tiptap/extension-underline": "^2.1.12",
"@tiptap/pm": "^2.1.12",
"@tiptap/react": "^2.1.12",
"@tiptap/starter-kit": "^2.1.12",
"@tiptap/suggestion": "^2.1.12",
"@types/react-color": "^3.0.10",
"@vercel/blob": "^0.15.1",
"@vercel/postgres": "^0.5.1",
"copilot-node-sdk": "^1.1.3",
"handlebars": "^4.7.8",
"next": "latest",
"prisma": "^5.6.0",
"re-resizable": "^6.9.11",
"react": "latest",
"react-color": "^2.19.3",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "latest",
"react-dropzone": "^14.2.3",
"react-easy-crop": "^5.0.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@iconify-json/mdi": "^1.1.58",
"@next/eslint-plugin-next": "^14.0.2",
"@svgr/webpack": "^8.1.0",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-custom-scrollbars": "^4.0.13",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "latest",
"eslint": "^8.53.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"postcss": "latest",
"prettier": "^3.0.3",
"tailwindcss": "latest",
"typescript": "latest"
},
"lint-staged": {
"{src,test}/**/*.{ts,tsx}": [
"eslint --fix --color",
"prettier --write"
]
}
}