This repository was archived by the owner on Dec 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
{
"name": "pikareed",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migration:generate": "typeorm-ts-node-esm migration:generate -d ormconfig.mjs ./migrations/Automigration",
"migration:run": "typeorm-ts-node-esm migration:run -d ormconfig.mjs",
"migration:revert": "typeorm-ts-node-esm migration:revert -d ormconfig.mjs"
},
"dependencies": {
"@next/font": "13.1.6",
"axios": "^1.3.6",
"bcrypt": "^5.1.0",
"config": "^3.3.9",
"date-fns": "^2.29.3",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"flowbite": "^1.6.3",
"flowbite-react": "^0.3.8",
"next": "^13.1.6",
"next-auth": "^4.19.2",
"pg": "^8.9.0",
"quill": "^1.3.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-quilljs": "^1.3.3",
"reflect-metadata": "^0.1.13",
"swr": "^2.1.3",
"typeorm": "^0.3.12",
"typescript": "4.9.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^3.3.0",
"@types/node": "18.13.0",
"@types/quill": "^2.0.10",
"@types/react": "^18.0.27",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.13",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.6",
"ts-node": "^10.9.1"
}
}