forked from globant-ui/NodeAngularWorkshop-Express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 948 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
{
"name": "globant-workshop-2016",
"version": "1.0.0",
"description": "Simple backend API in Express",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"dropDB": "node datastore/dropDatabase.js",
"seedDB": "node datastore/seedDatabase.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/globant-ui/GlobantWorkshop2016.git"
},
"keywords": [
"API",
"express.js"
],
"author": {
"name": "Geronimo Garcia Sgritta",
"email": "[email protected]",
"url": "https://twitter.com/geronimogarcia"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/globant-ui/GlobantWorkshop2016/issues"
},
"homepage": "https://github.com/globant-ui/GlobantWorkshop2016#readme",
"dependencies": {
"bluebird": "^3.4.1",
"body-parser": "^1.15.1",
"cors": "^2.7.1",
"express": "^4.13.4",
"nedb": "^1.8.0",
"nodemon": "^1.9.2"
}
}