-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
92 lines (92 loc) · 2.53 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "openstad-oauth2-server",
"version": "1.0.0",
"author": "Tosh Koevoets",
"description": "SSO authentication for openstad apps",
"license": "MIT",
"main": "app.js",
"dependencies": {
"bcrypt": "^5.0.1",
"bluebird": "^3.5.1",
"body-parser": "^1.9.x",
"bookshelf": "^1.2.0",
"bookshelf-json-columns": "^3.0.0",
"connect-ensure-login": "^0.1.x",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.3.x",
"csurf": "^1.9.0",
"dotenv": "^6.0.0",
"ejs": "^3.1.8",
"express": "^4.10.x",
"express-brute": "^1.0.1",
"express-flash": "0.0.2",
"express-session": "1.17.2",
"express-slow-down": "^1.4.0",
"express-validator": "^5.3.0",
"fast-csv": "^4.3.6",
"hat": "0.0.3",
"jsonwebtoken": "^9.0.0",
"knex": "^0.21.21",
"less": "^3.12.2",
"md5": "^2.2.1",
"merge": "^2.1.1",
"moment": "^2.29.3",
"moment-timezone": "^0.5.23",
"mysql": "^2.16.0",
"netmask": "^2.0.2",
"node-2fa": "^2.0.2",
"node-fetch": "^2.6.7",
"nodemailer": "^6.6.1",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.2",
"oauth2orize": "^1.0.x",
"passport": "^0.6.0",
"passport-auth-token": "^1.0.1",
"passport-http": "^0.3.x",
"passport-http-bearer": "^1.0.x",
"passport-local": "^1.0.x",
"passport-oauth2-client-password": "^0.1.x",
"passport-url": "^1.0.4",
"request-promise": "^4.2.2",
"sanitize-html": "^2.7.0",
"session-file-store": "^1.2.0",
"uuid": "^3.0.1"
},
"scripts": {
"lint": "eslint *.js config db test",
"start": "node app.js",
"test": "npm run test:unit && npm run test:e2e",
"test-cert": "env TEST_CERTS=1 npm run test:unit",
"test:unit": "jest unit",
"test:e2e": "jest integration",
"test:watch": "npm run test -- --watch",
"dev": "nodemon server.js",
"watch": "npm-run-all --parallel watch:*",
"watch:css": "nodemon -e less -w public/css -x npm run build:css",
"build:css": "lessc public/css/main.less > public/css/main.css"
},
"engines": {
"node": ">=6.7.0",
"npm": ">=3.10.0"
},
"devDependencies": {
"es6-promisify": "^5.0.x",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"jest": "^27.2.5",
"mock-knex": "^0.4.11",
"request": "^2.48.x",
"sqlite3": "^5.0.4",
"supertest": "^4.0.2"
},
"keywords": [
"authentication",
"oauth2",
"security",
"passport"
]
}