-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "@lreading/ts-express-framework",
"version": "2.1.4",
"description": "Typescript Express Framework for REST APIs",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all lint audit tsc",
"tsc": "tsc",
"lint": "eslint . --ext .ts --fix",
"audit": "pnpm audit --registry=https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lreading/ts-express-framework.git"
},
"author": {
"name": "Leo Reading"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.25",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.19.130",
"@types/triple-beam": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^7.32.0",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@lreading/ts-logger": "^1.0.12",
"class-transformer": "^0.5.1",
"jsonwebtoken": "^9.0.3",
"jwks-rsa": "^2.1.5",
"logform": "^2.7.0",
"openapi-types": "^12.1.3",
"reflect-metadata": "^0.1.14",
"winston-transport": "^4.9.0"
},
"pnpm": {
"overrides": {
"micromatch@<4.0.8": ">=4.0.8",
"minimatch": ">=9.0.7"
}
}
}