-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 874 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
{
"name": "RedisUsers",
"version": "1.0.0",
"description": "React/Node.js webapp that relies solely on Redis and its lightweight, persistent nature to store user data. Fast without the bulk of a RDBMS or NoSQL data store.",
"repository": "https://github.com/govindrai/redisusers.git",
"engines": {
"node": "8.1.X",
"npm": "5.4.0"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "concurrently \"nodemon -L index.js\" \"npm run start --prefix client\"",
"postinstall": "npm i --prefix client && npm run build --prefix client",
"redis": "~/redis-5.0.3/src/redis-server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"express": "^4.15.4",
"redis": "^2.8.0"
},
"devDependencies": {
"concurrently": "^3.5.0"
}
}