-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 849 Bytes
/
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
{
"name": "next-cookie-auth",
"version": "1.0.0",
"description": "Cookie authentication with Next.js",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "NODE_ENV=production node server.js",
"build": "next build",
"deploy": "now --public"
},
"author": "Habibirrahman",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/habibirrahman/next-cookie-auth.git"
},
"bugs": {
"url": "https://github.com/habibirrahman/next-cookie-auth/issues"
},
"homepage": "https://github.com/habibirrahman/next-cookie-auth#readme"
}