-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.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
{
"name": "@goodrequest/passport-jwt-wrapper",
"version": "1.7.1",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "JWT_SECRET=somerandomsecret ts-mocha --config \"./.mocharc.js\"",
"test:debug": "JWT_SECRET=somerandomsecret ts-mocha --config \"./.mocharc.js\" --inspect",
"test:coverage": "JWT_SECRET=somerandomsecret nyc --reporter=lcov --temp-dir=\"./temp/.nyc_output\" ts-mocha --config \"./.mocharc.js\" --timeout=100000",
"lint": "eslint src tests --color --ext .js --ext .ts",
"lint:fix": "eslint src tests --color --ext .js --ext .ts --fix",
"lint:watch": "npm run lint -- --watch --ext .js --ext .ts",
"translate:scan": "i18next-scanner 'src/**/*.ts'",
"prebuild": "rm -rf dist",
"build": "tsc"
},
"keywords": [],
"author": "Juraj Chripko <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/GoodRequest/passport-jwt-wrapper"
},
"devDependencies": {
"@goodrequest/eslint-config-typescript": "^1.2.1",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.4",
"@types/config": "^3.3.0",
"@types/deep-extend": "^0.6.0",
"@types/express": "^4.17.15",
"@types/i18next": "^13.0.0",
"@types/joi": "17.2.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/mocha": "^10.0.1",
"@types/ms": "^0.7.31",
"@types/node": "^20.2.5",
"@types/passport": "1.0.11",
"@types/passport-jwt": "^3.0.8",
"@types/passport-local": "^1.0.35",
"@types/sequelize": "^4.28.14",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"chai": "^4.3.7",
"eslint": "8.37.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"i18next-fs-backend": "^2.1.1",
"i18next-http-middleware": "^3.2.2",
"i18next-scanner": "^4.1.0",
"import-fresh": "^3.3.0",
"mocha": "^10.2.0",
"node-mocks-http": "^1.12.1",
"nyc": "^15.1.0",
"passport": "0.6.0",
"prettier": "^2.8.3",
"supertest": "^6.3.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"config": "3.3.7",
"deep-extend": "^0.6.0",
"express": "^4.18.2",
"i18next": "^23.4.6",
"joi": "17.9.2",
"jsonwebtoken": "^9.0.0",
"ms": "^2.1.3",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"uuid": "^9.0.0"
}
}