-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 753 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "sigin",
"version": "1.0.0",
"description": "objectives:\r create a React application using a token-based authentication system\r create a mock API that will return a user token\r build a login page that will fetch the token, and \r check for authentication without rerouting a user.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.js",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"google-auth-library": "^7.3.0"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}