-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@dmxdev/auth-sdk",
"version": "2.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"dev": "nodemon --watch src/index.ts",
"test:jest": "jest",
"test:jest:coverage": "jest --coverage",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"prettier": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"prettier:check": "prettier --check 'src/**/*.{ts,tsx,js,jsx,json,md}'"
},
"engines": {
"node": ">=18"
},
"keywords": [],
"author": "DMX214",
"license": "ISC",
"description": "Auth SDK ready to integrate",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/bcrypt": "^6.0.0",
"@types/chai": "^5.2.2",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/mocha": "^10.0.10",
"@types/ms": "^2.1.0",
"@types/node": "^24.3.3",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"chai": "^6.0.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"jest": "^30.1.3",
"jiti": "^2.5.1",
"mocha": "^11.7.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
},
"dependencies": {
"@types/sinon": "^17.0.4",
"bcrypt": "^6.0.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"sinon": "^21.0.0",
"supertest": "^7.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digen21/auth-sdk.git"
},
"bugs": {
"url": "https://github.com/digen21/auth-sdk/issues"
},
"homepage": "https://github.com/digen21/auth-sdk#readme"
}