-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.33 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "obsrv-web-console",
"version": "1.0.0",
"description": "obsrv web console",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"start": "ts-node ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sunbird-Obsrv/obsrv-web-console.git"
},
"author": "ravinder kumar",
"dependencies": {
"@types/randomstring": "^1.1.8",
"ajv": "^8.12.0",
"axios": "^1.2.3",
"bcryptjs": "^2.4.3",
"connect-ensure-login": "^0.1.1",
"connect-pg-simple": "^8.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"debug": "^4.3.4",
"ejs": "^3.1.9",
"express": "^4.17.6",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"http-errors": "^2.0.0",
"http-proxy-middleware": "^2.0.6",
"json-difference": "^1.16.1",
"jsonwebtoken": "^9.0.1",
"kafkajs": "^2.2.4",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"morgan": "^1.10.0",
"oauth2orize": "^1.11.1",
"passport": "^0.6.0",
"passport-activedirectory": "^1.4.0",
"passport-google-oauth20": "^2.0.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-keycloak-oauth2-oidc": "^1.0.5",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"passport-openidconnect": "^0.1.1",
"pg": "^8.10.0",
"pg-promise": "^11.4.3",
"prom-client": "^14.2.0",
"randomstring": "^1.2.3",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-ensure-login": "^0.1.7",
"@types/connect-pg-simple": "^7.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.16",
"@types/express-oauth-server": "^2.0.4",
"@types/express-serve-static-core": "^4.17.33",
"@types/express-session": "^1.17.7",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.2.6",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash-es": "^4.17.6",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/oauth2-server": "^3.0.13",
"@types/oauth2orize": "^1.8.11",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-http": "^0.3.9",
"@types/passport-http-bearer": "^1.0.37",
"@types/passport-local": "^1.0.35",
"@types/passport-oauth2-client-password": "^0.1.2",
"@types/passport-openidconnect": "^0.1.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"dotenv-run-script": "^0.2.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^32.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.6.0",
"jest": "^29.4.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"overrides": {
"semver": "^7.5.3",
"lodash": "^4.17.21"
}
}