-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1008 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": "quantified_self",
"version": "1.0.0",
"description": "Meal tracker - quantify yourself!",
"main": "server.js",
"scripts": {
"test": "NODE_ENV=test mocha test/*-test.js",
"start": "nodemon server.js",
"debug": "NODE_ENV=test mocha debug test/*-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lao9/quantified_self.git"
},
"keywords": [
"track",
"self",
"food",
"meal",
"quantify",
"express",
"calories"
],
"author": "Lauren Oliveri, Jonathan Kidd",
"license": "ISC",
"bugs": {
"url": "https://github.com/lao9/quantified_self/issues"
},
"homepage": "https://github.com/lao9/quantified_self#readme",
"dependencies": {
"body-parser": "^1.17.2",
"cors": "^2.8.3",
"express": "^4.15.3",
"knex": "^0.13.0",
"pg": "^6.4.0"
},
"devDependencies": {
"chai": "^4.0.2",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"pryjs": "^1.0.3",
"request": "^2.81.0"
}
}