-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 986 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
{
"name": "quantified-self-api",
"version": "1.0.0",
"description": "Quantified Self API",
"main": "server.js",
"engines": {
"node": "8.7.0",
"npm": "5.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chantal66/Quantified-Self-API-JS.git "
},
"scripts": {
"test": "NODE_ENV=test mocha test/*-test.js",
"start": "nodemon server.js",
"dev": "nodemon server.js",
"debug": "NODE_ENV=test mocha debug test/*-test.js"
},
"author": "Chantal Justamond and Nick Edwards",
"license": "MIT",
"homepage": "https://github.com/chantal66/Quantified-Self-API-JS#readme",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"knex": "^0.13.0",
"pg": "^7.3.0",
"pryjs": "^1.0.3",
"request": "^2.83.0"
},
"devDependencies": {
"@types/express": "^4.0.37",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"request": "^2.83.0"
}
}