-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.83 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "globant-workshop-2017-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/workshop2017-nodejs-chile.git"
},
"keywords": [
"API",
"express.js"
],
"author": {
"name": "Matias Bogado",
"email": "[email protected]",
"url": "https://ar.linkedin.com/in/matías-bogado-71108652"
},
"contributors": [
{
"name": "Matias Bogado",
"email": "[email protected]",
"url": "https://ar.linkedin.com/in/matías-bogado-71108652"
},
{
"name": "Bruno Trigueiro",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/btrigueiro"
},
{
"name": "Cristian Bietti",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/crystian"
},
{
"name": "Marlon Alfonzo",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/marlon-alfonzo-nava/"
},
{
"name": "Alejandro Bustos Nuñez",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/alejandrobustosn/"
},
{
"name": "Ivan Olivares",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/ivolivares/"
},
{
"name": "Gonzalo Pincheira Arancibia",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/gonzalo-ignacio-pincheira-arancibia-a130bb43/"
},
{
"name": "Cristian Osorio Iribarren",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/cristianosorioiribarren/"
}
],
"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"
}
}