-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "okta-node-api",
"version": "1.0.0",
"description": "A simple Javascript front end and node back end integrated with Okta. Features include Okta API access using OAuth for Okta, backend API protection, and a custom, branded email OTP authenticator.",
"homepage": "https://github.com/mdwallick/okta-node-api",
"bugs": {
"url": "https://github.com/mdwallick/okta-node-api/issues",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"start": "npm-run-all --parallel watch:server start:web",
"watch:server": "nodemon -r dotenv/config --watch server server/app.js",
"start:web": "http-server -p 8080",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@okta/jwt-verifier": "latest",
"cors": "latest",
"express": "latest",
"jsonwebtoken": "latest",
"query-string": "latest",
"totp-generator": "latest",
"xhr2": "latest"
},
"devDependencies": {
"dotenv": "latest",
"nodemon": "latest",
"npm-run-all": "latest"
}
}