forked from blue-stream/blue-stream-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 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
{
"name": "authentication-service",
"version": "0.1.1",
"description": "Authenticator - Handles authentication and generates user token",
"main": "index.js",
"scripts": {
"build": "npm run build:tsc && npm run build:assets",
"build:tsc": "tsc",
"build:assets": "cp src/authentication/metadata.xml dist/authentication/metadata.xml",
"dev": "ts-node ./src/index.ts",
"start": "node ./dist/index.js",
"test:lint": "npm run tslint && npm test",
"test": "cross-env NODE_ENV=test mocha --recursive -r ts-node/register src/**/*.spec.ts --exit",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"release": "standard-version",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"author": "Ron Borysovski & Yonatan Tal",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.14",
"@types/express": "^4.17.9",
"@types/helmet": "0.0.38",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.0",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.19",
"@types/passport": "^0.4.7",
"@types/passport-saml": "^1.1.2",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"mocha": "^8.2.1",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@grpc/proto-loader": "^0.5.5",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"grpc": "^1.24.4",
"helmet": "^3.21.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"passport": "^0.4.0",
"passport-saml": "^1.1.0",
"passport-shraga": "^1.4.0",
"snyk": "^1.437.3"
},
"snyk": true
}