This repository has been archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.2 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
{
"name": "cookbook-connect",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next build && next start",
"lint": "next lint",
"migration:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate -d ormconfig.ts ./migrations/Automigration",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run -d ormconfig.ts",
"migration:revert": "ts-node ./node_modules/typeorm/cli.js migration:revert -d ormconfig.ts"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@tiptap/extension-color": "^2.2.6",
"@tiptap/extension-placeholder": "^2.2.6",
"@tiptap/extension-text-style": "^2.2.6",
"@tiptap/extension-underline": "^2.2.6",
"@tiptap/pm": "^2.2.6",
"@tiptap/react": "^2.2.6",
"@tiptap/starter-kit": "^2.2.6",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"config": "^3.3.11",
"date-fns": "^3.6.0",
"dompurify": "^3.1.0",
"flowbite": "^2.3.0",
"flowbite-react": "^0.9.0",
"html2pdf.js": "^0.10.1",
"next": "14.1.0",
"next-auth": "^4.24.7",
"password-validator": "^5.3.0",
"pg": "^8.11.3",
"react": "^18",
"react-dom": "^18",
"react-native-sqlite-storage": "file:./shims/react-native-sqlite-storage",
"react-toastify": "^10.0.5",
"reflect-metadata": "^0.2.1",
"swr": "^2.2.5",
"typeorm": "^0.3.20",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.12",
"@types/bcrypt": "^5.0.2",
"@types/config": "^3.3.3",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.11.26",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}