-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.13 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.13 KB
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
{
"name": "rm-authenticator",
"version": "1.6.6",
"description": "Authentication Application",
"main": "./dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"test": "./node_modules/.bin/mocha",
"dev": "./node_modules/.bin/tsc-watch --onSuccess \"node --inspect=9229 ./dist/index.js\"",
"debug": "node --inspect=9229 ./dist/index.js",
"coverage": "./node_modules/.bin/nyc npm run test",
"build": "./node_modules/.bin/tsc --watch false",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore .",
"tsc": "./node_modules/.bin/tsc"
},
"_moduleAliases": {
"@": "./dist/src",
"@test": "./dist/test",
"@root": "./dist"
},
"repository": {
"type": "git",
"url": "https://github.com/relief-melone/rm-authenticator"
},
"keywords": [
"authentication",
"docker",
"container",
"oauth",
"google",
"facebook"
],
"author": "Relief-Melone",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.9",
"@types/node": "^12.0.12",
"@types/oauth": "^0.9.1",
"@types/passport": "^1.0.0",
"@types/passport-oauth2": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"chai": "^4.2.0",
"chai-exclude": "^2.0.2",
"eslint": "^6.8.0",
"eslint-import-resolver-alias": "latest",
"eslint-plugin-import": "latest",
"mocha": "^7.1.1",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/jsonwebtoken": "^8.3.7",
"@types/passport-google-oauth2": "^0.1.2",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.16.2",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^5.6.5",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-oauth2": "^1.5.0",
"pkg": "^4.4.0",
"tsc-watch": "^4.2.9",
"url-parse": "^1.4.7"
}
}