-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "next-auth-demo",
"version": "0.0.0",
"private": true,
"description": "An example project using 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 dev",
"build": "next build",
"start": "next start",
"types": "tsc --noEmit"
},
"author": "Iain Collins <[email protected]>",
"contributors": [
"Balázs Orbán <[email protected]>",
"Nico Domino <[email protected]>",
"Lluis Agusti <[email protected]>"
],
"license": "MIT",
"dependencies": {
"next": "^14.1.1",
"next-auth": "^4.15.0",
"nodemailer": "^6.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@netlify/next": "*",
"@netlify/plugin-nextjs": "*",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.14",
"@types/react": "^18.0.0",
"husky": "^7.0.4",
"npm-run-all2": "^5.0.0",
"typescript": "^4.5.5"
},
"prettier": {
"semi": false
},
"engines": {
"node": ">=16.0.0"
}
}