-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "twitch-redis-cache",
"version": "1.0.0",
"description": "Redis cache and rest api for user image urls",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UpDownLeftDie/twitch-redis-cache.git"
},
"author": "Jared Kotoff (UpDownLeftDie)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/UpDownLeftDie/twitch-redis-cache/issues"
},
"homepage": "https://github.com/UpDownLeftDie/twitch-redis-cache#readme",
"nodemonConfig": {
"ignore": [
"session.json"
]
},
"dependencies": {
"@koa/cors": "^3.1.0",
"co-body": "^6.1.0",
"dotenv": "^8.2.0",
"koa": "^2.13.1",
"koa-router": "^10.0.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"readline": "^1.3.0",
"redis": "^3.0.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"koa-bodyparser": "^4.3.0",
"nodemon": "^2.0.7",
"open": "^7.4.0",
"redis-mock": "^0.56.3"
}
}