-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.6 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
{
"name": "business-cards",
"version": "1.0.0",
"description": "A basic Next.js application that demonstrates the use of NextAuth using the Prisma adapter.",
"author": "Marothi Mahlake <[email protected]>",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/marothi-codes"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint --ext js,jsx,ts,tsx --fix ."
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "github:fortawesome/react-fontawesome",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.13",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^3.15.2",
"@types/express": "^4.17.17",
"@types/styled-components": "^5.1.26",
"axios": "^0.27.2",
"exceljs": "^4.3.0",
"express": "^4.18.2",
"fabric": "^5.3.0",
"file-saver": "^2.0.5",
"formidable": "^2.1.1",
"googleapis": "^126.0.0",
"html-to-image": "^1.11.11",
"konva": "^8.4.3",
"lodash": "^4.17.21",
"next": "latest",
"next-auth": "^4.5.0",
"next-themes": "^0.2.1",
"qr-code-styling": "^1.6.0-rc.1",
"qrcode-generator": "^1.4.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.32.2",
"react-konva": "^18.2.5",
"react-toastify": "^9.1.2",
"react-transition-group": "^4.4.5",
"tesseract.js": "^4.0.2"
},
"devDependencies": {
"@types/downloadjs": "^1.4.3",
"@types/file-saver": "^2.0.5",
"@types/formidable": "^2.0.5",
"@types/lodash": "^4.14.194",
"@types/next-auth": "^3.15.0",
"@types/node": "^17.0.35",
"@types/nodemailer": "^6.4.9",
"@types/react": "^18.0.9",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.4.7",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prisma": "^5.4.2",
"tailwindcss": "^3.1.2",
"typescript": "^4.7.2"
}
}