-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "globant-workshop-2016-api",
"version": "2.0.0",
"description": "An API developed using express.js. For training purposes",
"main": "index.js",
"scripts": {
"dbseed": "node node_modules/babel-cli/bin/babel-node.js scripts/dbseed.js",
"dbdrop": "node node_modules/babel-cli/bin/babel-node.js scripts/dbdrop.js",
"spotify-fetcher": "node scripts/spotify-fetcher.js",
"start": "node node_modules/nodemon/bin/nodemon.js ./server.js",
"test": "node node_modules/nodemon/bin/nodemon.js ./test.js",
"tdd": "node node_modules/nodemon/bin/nodemon.js ./tdd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/globant-ui/workshop2016-nodeconfar-express.git"
},
"keywords": [
"API",
"express.js"
],
"author": {
"name": "Matias Bogado",
"email": "matias.bogado@globant.com",
"url": "https://ar.linkedin.com/in/matías-bogado-71108652"
},
"contributors": [
{
"name": "Matias Bogado",
"email": "matias.bogado@globant.com",
"url": "https://ar.linkedin.com/in/matías-bogado-71108652"
},
{
"name": "Bruno Trigueiro",
"email": "bruno.trigueiro@globant.com",
"url": "https://www.linkedin.com/in/btrigueiro"
},
{
"name": "Cristian Bietti",
"email": "cristian.bietti@globant.com",
"url": "https://www.linkedin.com/in/crystian"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/globant-ui/workshop2016-nodeconfar-express/issues"
},
"homepage": "https://github.com/globant-ui/workshop2016-nodeconfar-express#readme",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"colors": "^1.1.2",
"express": "^4.14.0",
"lodash": "^4.16.6",
"morgan": "^1.7.0",
"nedb": "^1.8.0",
"node-fetch": "^1.6.3",
"nodemon": "^1.11.0",
"to-snake-case": "^1.0.0"
},
"devDependencies": {
"jasmine": "^2.5.2",
"jasmine-fail-fast": "^2.0.0",
"spotify-web-api-node": "^2.3.6"
}
}