-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "redis-playground",
"version": "0.0.1",
"description": "Play with raw Redis commands.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "npm run build && node dist/index.js",
"dev": "concurrently \"tsc --watch\" \"nodemon dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.0",
"nodemon": "^3.1.7"
},
"dependencies": {
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"chalk": "^5.3.0",
"csv-parse": "^5.6.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"redis": "^4.7.0",
"socket.io": "^4.8.1",
"stream-json": "^1.9.1",
"yauzl": "^3.2.0",
"zod": "^3.23.8",
"typescript": "^5.7.2",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.0",
"@types/socket.io": "^3.0.2",
"@types/stream-json": "^1.7.8",
"@types/yauzl": "^2.10.3"
}
}