-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "caching-proxy",
"version": "0.1.1",
"description": "A CLI app that caches responses",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"start": "node ./dist/index.js",
"dev": "tsx ./src/index.ts",
"build": "tsc --build && tsx ./misc/shorten_command.ts",
"build:watch": "tsc --watch",
"test": "jest",
"test:units": "jest --testPathPatterns=./src/__tests__/units"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilia-abbasi/caching-proxy.git"
},
"author": "Ilia Abbasi",
"license": "ISC",
"bugs": {
"url": "https://github.com/ilia-abbasi/caching-proxy/issues"
},
"homepage": "https://github.com/ilia-abbasi/caching-proxy#readme",
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^24.7.2",
"@types/redis": "^4.0.10",
"jest": "^30.2.0",
"nodemon": "^3.1.10",
"ts-jest": "^29.4.5",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"commander": "^14.0.1",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"morgan": "^1.10.1",
"redis": "^5.8.3"
}
}