-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 995 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
38
39
40
41
42
43
44
{
"name": "Jeopardy-API",
"version": "1.0.0",
"description": "Jeopardy API",
"main": "server/index.js",
"scripts": {
"start": "nodemon server/ --ignore client/",
"test": "./test/run.sh"
},
"engines": {
"node": "0.11.x"
},
"author": "Farah Maredia & Edwin Calte",
"license": "MIT",
"dependencies": {
"babelify": "^6.4.0",
"bluebird": "^2.10.2",
"body-parser": "^1.14.1",
"browserify-middleware": "^5.0.2",
"express": "^4.12.4",
"knex": "^0.8.6",
"mithril": "^0.2.0",
"pg": "^4.4.2"
},
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^2.3.3",
"nodemon": "^1.3.7",
"supertest": "^1.1.0",
"supertest-as-promised": "^2.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/fmaredia/Jeopardy-API"
},
"keywords": [
"Jeopardy",
"API"
],
"bugs": {
"url": "https://github.com/fmaredia/Jeopardy-API/issues"
},
"homepage": "https://github.com/fmaredia/Jeopardy-API"
}