-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.03 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
67
68
69
70
71
72
{
"name": "technote",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev:db": "docker-compose up -d",
"dev:frontend": "next dev",
"dev": "node scripts/dev.js",
"stop:db": "docker-compose down",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"prisma": "prisma"
},
"dependencies": {
"@floating-ui/dom": "^1.7.4",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.18.0",
"@prisma/extension-accelerate": "^2.0.2",
"@reduxjs/toolkit": "^2.9.0",
"@tiptap/extension-color": "^3.11.1",
"@tiptap/extension-font-family": "^3.11.1",
"@tiptap/extension-image": "^3.4.4",
"@tiptap/extension-placeholder": "^3.4.4",
"@tiptap/extension-text-style": "^3.4.4",
"@tiptap/react": "^3.4.4",
"@tiptap/starter-kit": "^3.4.4",
"@types/bcrypt": "^6.0.0",
"@types/fabric": "^5.3.10",
"axios": "^1.12.2",
"bcrypt": "^6.0.0",
"cheerio": "^1.1.2",
"fabric": "^6.9.0",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"next": "16.0.7",
"next-auth": "^4.24.12",
"nodemailer": "^7.0.10",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^15.7.3",
"react-icons": "^5.5.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/create-config": "^1.11.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.38.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-redux": "^7.1.34",
"@types/uuid": "^10.0.0",
"baseline-browser-mapping": "^2.9.2",
"dotenv-cli": "^10.0.0",
"eslint": "^9.38.0",
"eslint-config-next": "^16.0.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"prisma": "^6.17.1",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
}
}