-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.33 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.33 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
73
74
75
76
77
78
{
"name": "canary-lab",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "node -r dotenv/config ./scripts/seed.js"
},
"dependencies": {
"@editorjs/attaches": "^1.3.0",
"@editorjs/checklist": "^1.6.0",
"@editorjs/code": "^2.9.0",
"@editorjs/delimiter": "^1.4.0",
"@editorjs/editorjs": "^2.29.0",
"@editorjs/embed": "^2.7.0",
"@editorjs/header": "^2.8.1",
"@editorjs/image": "^2.9.0",
"@editorjs/inline-code": "^1.5.0",
"@editorjs/link": "^2.6.2",
"@editorjs/list": "^1.9.0",
"@editorjs/marker": "^1.4.0",
"@editorjs/nested-list": "^1.4.2",
"@editorjs/paragraph": "^2.11.3",
"@editorjs/quote": "^2.6.0",
"@editorjs/raw": "^2.5.0",
"@editorjs/simple-image": "^1.6.0",
"@editorjs/table": "^2.3.0",
"@editorjs/underline": "^1.1.0",
"@editorjs/warning": "^1.4.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^2.1.0",
"@testing-library/jest-dom": "^6.5.0",
"@uiw/react-markdown-editor": "^6.1.1",
"@vercel/analytics": "^1.1.2",
"@vercel/blob": "^0.23.2",
"@vercel/postgres": "^0.9.0",
"@vercel/speed-insights": "^1.0.9",
"axios": "^1.8.2",
"bcrypt": "^5.1.1",
"camelcase-keys": "^9.1.3",
"editorjs-alert": "^1.1.3",
"editorjs-html": "^3.4.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"next": "14.2.26",
"next-auth": "^5.0.0-beta.4",
"next-pwa": "^5.6.0",
"react": "^18",
"react-dom": "^18",
"react-redux": "^9.1.0",
"react-type-animation": "^3.2.0",
"redux-persist": "^6.0.0",
"sass": "^1.70.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/lodash": "^4.17.0",
"@types/node": "^20.16.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"dotenv": "^16.3.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-plugin-react": "^7.33.2",
"typescript": "^5"
}
}