-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.17 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
{
"name": "next-auth-typescript-example",
"version": "0.0.0",
"private": true,
"description": "An example project for NextAuth.js using Typescript",
"repository": "https://github.com/nextauthjs/next-auth-typescript-example.git",
"bugs": {
"url": "https://github.com/nextauthjs/next-auth/issues"
},
"homepage": "http://next-auth-typescript-example.now.sh",
"main": "",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"types": "tsc --noEmit"
},
"author": "Lluis Agusti <lluis@hey.com>",
"contributors": [
"Balázs Orbán <info@balazsorban.com>",
"Iain Collins <me@iaincollins.com>",
"Nico Domino <yo@ndo.dev>"
],
"license": "ISC",
"prettier": {
"semi": false
},
"dependencies": {
"next": "^11.0.0",
"next-auth": "^4.0.1",
"nodemailer": "^6.6.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@mswjs/interceptors":"0.13.0",
"@types/node": "^15.12.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"msw": "^0.36.7",
"typescript": "^4.3.4"
},
"overrides": {
"msw": {
"@mswjs/interceptors":"0.13.0"
}
}
}