-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 818 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 818 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
32
33
34
35
36
37
{
"name": "speed-cache",
"version": "0.0.1",
"description": "A alternative to redis, comes with admin panel to help us see the cache and manipulate it",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "npx prettier --write src/**/*.ts"
},
"keywords": [
"speed-cache",
"cache",
"memory-cache",
"cache-with-ui",
"admin-panel"
],
"author": "webcoderspeed",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"prettier": "2.7.1",
"typescript": "^4.8.2"
},
"files": [
"lib/**/*"
],
"dependencies": {
"date-fns": "^2.29.2",
"dayjs": "^1.11.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"pino": "^8.4.2",
"pino-pretty": "^9.1.0"
}
}