-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 976 Bytes
/
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
{
"name": "verdaccio-openid-connect",
"version": "3.0.0",
"license": "MIT",
"repository": "deeplay-io/verdaccio-openid-connect",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"**/*.{ts,js,yml,yaml,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@types/async-retry": "^1.4.2",
"@types/express": "^4.17.11",
"@types/generic-pool": "^3.1.9",
"@types/jsonwebtoken": "^9.0.7",
"@types/ms": "^0.7.31",
"@types/node": "^22.5.5",
"@verdaccio/types": "^10.8.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"dependencies": {
"async-retry": "^1.3.1",
"express": "^4.17.1",
"generic-pool": "^3.7.1",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"ms": "^2.1.3",
"nanoid": "^3.1.20",
"openid-client": "^5.7.0"
}
}