-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 755 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 755 Bytes
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
{
"name": "nodejs-redis-cache-middleware",
"module": "src/server.ts",
"type": "module",
"scripts": {
"dev": "bun --watch src/http/server.ts",
"build": "bun build src/http/index.ts",
"start": "NODE_ENV=production bun src/http/index.ts",
"test": "bun test"
},
"dependencies": {
"@types/cors": "^2.8.17",
"axios": "^1.6.7",
"cors": "^2.8.5",
"express": "^4.18.3",
"object-hash": "^3.0.0",
"redis": "^4.6.13",
"zod": "^3.22.4"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/express": "^4.17.21",
"@types/object-hash": "^3.0.6",
"bun": "^1.0.30",
"eslint": "^8.57.0",
"typescript": "^5.4.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}