-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "oauth2orize-authorization-server",
"version": "6.3.4",
"author": "Frank Hassanabad <[email protected]>",
"description": "OAuth2 security recipes and examples based on OAuth2orize",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/FrankHassanabad/Oauth2orizeRecipes.git"
},
"engines": {
"node": ">=6.7.0",
"npm": ">=3.10.0"
},
"scripts": {
"lint": "eslint *.js config db test",
"start": "node index.js",
"dev": "nodemon --inspect index.js",
"seed": "node app/libraries/seeder",
"test": "mocha test test/db test/config",
"test:watch": "npm run test -- --watch",
"test:integration": "mocha test/integration"
},
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.9.x",
"config": "^1.30.0",
"express": "^4.10.x",
"faker": "^4.1.0",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.13",
"morgan": "^1.9.1",
"node-vault": "^0.7.1",
"passport": "^0.3.x",
"passport-local": "^1.0.x",
"pg": "^7.4.3",
"sequelize": "^4.38.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"uuid": "^3.1.0",
"winston": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.18.x",
"eslint-config-airbnb": "^13.0.x",
"eslint-plugin-import": "^2.2.x",
"eslint-plugin-jsx-a11y": "^2.2.x",
"eslint-plugin-react": "^6.7.x",
"mocha": "^3.2.x",
"nodemon": "^1.18.1"
},
"keywords": [
"authentication",
"oauth2",
"security",
"passport"
]
}