generated from nextauthjs/next-auth-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.62 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
{
"private": true,
"description": "An example project for NextAuth.js with Next.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",
"scripts": {
"dev": "next dev",
"esl": "clear && next lint",
"build": "next build",
"go": "bash src/cli/sh/go.sh",
"test": "bash src/cli/sh/test.sh",
"jest": "clear && jest --verbose --detectOpenHandles --watchAll",
"cy": "cypress open",
"tree": "clear && echo '\n\nYour local branches\n\n' && git branch",
"prep": "bash src/cli/sh/prep.sh",
"push": "bash src/cli/sh/push.sh",
"move": "bash src/cli/sh/move.sh",
"dl": "clear && git branch -D ",
"dr": "clear && git push origin --delete ",
"kill": "clear && lsof -t -i:3000 | xargs kill -9",
"spy": "clear && next info",
"l": "clear && git branch",
"r": "clear && git branch -r",
"fill": "bash src/cli/sh/fill.sh",
"restore": "git pull origin main",
"freeze": "for old in *.tsx; do mv $old `basename $old .tsx`.wip; done",
"reboot": "rm -rf ./node_modules ./yarn.lock ./.next && yarn cache clean && yarn install",
"analyse": "cross-env ANALYZE=true next build"
},
"author": "Iain Collins <[email protected]>",
"contributors": [
"Balázs Orbán <[email protected]>",
"Nico Domino <[email protected]>",
"Lluis Agusti <[email protected]>"
],
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.11.14",
"@mui/x-date-pickers": "^5.0.5",
"@next-auth/mongodb-adapter": "^1.1.0",
"@next/bundle-analyzer": "^12.3.1",
"@sendgrid/mail": "^7.7.0",
"dateformat": "^5.0.3",
"dayjs": "^1.11.6",
"moment": "^2.29.4",
"mongodb": "^4.10.0",
"mongoose": "^6.6.7",
"next": "latest",
"next-auth": "^4.19.1",
"nodemailer": "^6",
"octokit": "^2.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-swipeable-views": "^0.14.0",
"react-swipeable-views-utils": "^0.14.0",
"short-unique-id": "^4.4.4",
"swr": "^2.0.3"
},
"devDependencies": {
"@testing-library/cypress": "^9.0.0",
"@types/node": "^17",
"@types/react": "^18.0.15",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"typescript": "^4"
}
}