-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "next-auth-example",
"version": "0.0.0",
"private": true,
"description": "An example project for NextAuth.js",
"repository": "https://github.com/nextauthjs/next-auth-example.git",
"bugs": {
"url": "https://github.com/nextauthjs/next-auth/issues"
},
"homepage": "https://next-auth-example.vercel.app",
"main": "",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"types": "tsc --noEmit"
},
"author": "Iain Collins <me@iaincollins.com>",
"contributors": [
"Balázs Orbán <info@balazsorban.com>",
"Nico Domino <yo@ndo.dev>",
"Lluis Agusti <hi@llu.lu>"
],
"license": "ISC",
"dependencies": {
"@cloudamqp/amqp-client": "^2.0.3",
"axios": "^0.27.2",
"express-fileupload": "^1.4.0",
"formidable": "^2.0.1",
"googleapis": "^104.0.0",
"got": "^12.1.0",
"mongodb": "^4.7.0",
"next": "12.1.7-canary.45",
"next-auth": "latest",
"nodemailer": "^6",
"react": "^18",
"react-dom": "^18",
"react-drag-drop-files": "^2.3.7"
},
"devDependencies": {
"@types/express-fileupload": "^1.2.2",
"@types/formidable": "^2.0.5",
"@types/node": "^17",
"@types/react": "^18",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.5",
"typescript": "^4"
},
"prettier": {
"semi": false
}
}