-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 975 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
{
"name": "snaptravel-test",
"version": "0.0.1",
"description": "This is our task for potential new fullstack engineers. We expect this task to take less than a few hours of work",
"main": "index.js",
"scripts": {
"redis": "redis-server --daemonize yes",
"start": "npm run redis && node index.js",
"dev": "npm run redis && ./node_modules/.bin/nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jourdanrodrigues/full-stack-demo.git"
},
"author": "Jourdan Rodrigues",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/jourdanrodrigues/full-stack-demo/issues"
},
"homepage": "https://gitlab.com/jourdanrodrigues/full-stack-demo#README",
"dependencies": {
"express": "^4.16.3",
"redis": "^2.8.0",
"request": "^2.85.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"nodemon": "^1.17.3"
}
}