-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "devdad-express-utils",
"version": "1.8.1",
"description": "Reusable Express.js utilities for error handling, async wrapping, and more",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"express",
"utilities",
"error-handling",
"typescript",
"javascript"
],
"author": "Oliver Metz",
"repository": {
"type": "git",
"url": "https://github.com/Devdad-Main/Express-Utils.git"
},
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.11.96",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^9.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongodb-memory-server": "^1.8.0",
"@types/supertest": "^6.0.3",
"@vitest/ui": "^4.0.14",
"mongodb-memory-server": "^10.3.0",
"supertest": "^7.1.4",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"files": [
"dist"
]
}