-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 969 Bytes
/
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
{
"name": "nodejs-redis-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for Node.js + Redis Caching | Examples with Azure Caches and Redis Lab",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"prettier": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuwan94/nodejs-redis-boilerplate.git"
},
"keywords": [
"nodejs",
"redis",
"azure-cache",
"azure"
],
"author": "nuwan94",
"license": "MIT",
"bugs": {
"url": "https://github.com/nuwan94/nodejs-redis-boilerplate/issues"
},
"homepage": "https://github.com/nuwan94/nodejs-redis-boilerplate#readme",
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"redis": "^3.1.1"
},
"devDependencies": {
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}