-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "well-bean",
"version": "1.0.0",
"description": "App to create a healthier lifestyle and routine in a community driven platform",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "NODE_ENV=test nyc tape src/test/**/*.test.js | tap-spec",
"test:routes": "NODE_ENV=test nyc tape src/test/controllers/*.test.js | tap-spec",
"test:queries": "NODE_ENV=test nyc tape src/test/model/*.test.js | tap-spec",
"test:helpers": "NODE_ENV=test nyc tape src/test/views/*.test.js | tap-spec",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build:db": "node src/model/database/db_build.js",
"sass": "node-sass --watch sass -o public/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-13/Well-Bean.git"
},
"author": "Phat, Haydn, Isaac, Nico",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-13/Well-Bean/issues"
},
"homepage": "https://github.com/fac-13/Well-Bean#readme",
"devDependencies": {
"codecov": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"node-sass": "^4.9.0",
"nodemon": "^1.17.4",
"nyc": "^11.7.2",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.9.0"
},
"dependencies": {
"bcrypt": "*",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"pg": "^7.4.3",
"pg-promise": "^8.4.3",
"serve-favicon": "^2.5.0",
"url": "^0.11.0"
}
}