-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 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": "@iterout/auth-module",
"version": "1.4.4",
"description": "Auth module for node backend applications",
"type": "module",
"exports": "./dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattia-bonardi-smeup/auth-module.git"
},
"keywords": [
"auth"
],
"author": "@iterout",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattia-bonardi-smeup/auth-module/issues"
},
"homepage": "https://github.com/mattia-bonardi-smeup/auth-module#readme",
"dependencies": {
"@iterout/email-sender-module": "^1.0.7",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.4",
"axios": "^0.26.1",
"google-auth-library": "^7.14.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.3.7",
"jest": "^27.4.7",
"rimraf": "^3.0.2",
"typescript": "^4.6.2",
"ts-jest": "next"
},
"files": [
"dist/",
"mail_templates"
],
"jest": {
"preset": "ts-jest/presets/default-esm",
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}