-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "express-tools",
"description": "Strictly typed production ready no-configuration server",
"version": "3.0.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "neilveil",
"repository": "neilveil/express-tools",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"dist": "rimraf dist && tsc",
"test:server": "nodemon --watch src --ext ts --exec 'ts-node -r tsconfig-paths/register src/demo/index.ts'",
"test:cli": "ts-node -r tsconfig-paths/register src/scripts/cli.ts gen-typed-bridge --src ./src/demo/bridge/index.ts --dest ./typedBridge.ts",
"lint": "eslint"
},
"bin": {
"express-tools": "./dist/scripts/cli.js"
},
"dependencies": {
"ajv": "^8.17.1",
"commander": "^13.0.0",
"compression": "^1.7.5",
"cors": "^2.8.5",
"express": "^4.21.2",
"joi": "^17.13.3",
"rollup": "^4.29.1",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"chalk": "^4.1.2",
"eslint": "^9.17.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript-eslint": "^8.19.0"
},
"keywords": [
"api",
"backend",
"caching",
"development",
"encryption",
"express",
"expressjs",
"framework",
"helpers",
"logging",
"server",
"validation"
]
}