-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "correl",
"version": "1.0.0",
"description": "an application that allows users to track symptoms and potentially contributing factors and view data that represents these data points over time",
"main": "app.js",
"scripts": {
"test": "ENV=test tape src/tests/*.js | tap-spec",
"start": "node ./src/index.js",
"build": "node src/model/database/db_build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-13/correl.git"
},
"author": "Eade Hemingway, Jenath Kanagesan, Jennah Hylton-Edwards, Tammy Speed",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-13/correl/issues"
},
"homepage": "https://github.com/fac-13/correl#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"nodemon": "^1.17.4",
"nyc": "^11.7.1",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.9.0"
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"env2": "^2.2.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"pg-promise": "^8.4.3",
"serve-favicon": "^2.5.0"
}
}