-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "user-distribution",
"version": "1.0.0",
"scripts": {
"start": "node -r dotenv/config ./bin/www",
"start:dev": "nodemon -r dotenv/config ./bin/www",
"deploy:nodeshift": "nodeshift --expose --namespace.name=user-distribution --namespace.create=true",
"deploy:oc": "oc apply -f openshift.yaml"
},
"dependencies": {
"barelog": "~0.2.0",
"body-parser": "^1.19.0",
"cache-manager": "~3.2.1",
"cache-manager-redis-store": "~2.0.0",
"connect-redis": "~4.0.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "~8.2.0",
"env-var": "~6.1.0",
"express": "~4.16.1",
"express-basic-auth": "~1.2.0",
"express-session": "~1.17.1",
"hbs": "~4.1.1",
"less-middleware": "~3.1.0",
"lodash.maxby": "~4.6.0",
"morgan": "~1.9.1",
"p-locate": "~4.1.0",
"p-map": "~4.0.0",
"p-queue": "~6.3.0",
"redis": "~3.0.2",
"timestring": "~6.0.0"
},
"devDependencies": {
"loadtest": "~4.1.0",
"nodemon": "~2.0.3",
"nodeshift": "~6.0.2"
},
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/Crosbie/username-distribution.git"
},
"license": "GPL-3.0",
"description": "This web app distributes usernames and passwords to individuals who are taking part in an OpenShift based workshop. Deploying this app in OpenShift and exposing it publicly will give users a central access point, giving them their individual login credentials and links to lab guides.",
"bugs": {
"url": "https://github.com/Crosbie/username-distribution/issues"
},
"homepage": "https://github.com/Crosbie/username-distribution#readme",
"main": "app.js"
}