-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.83 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
52
53
54
55
56
57
{
"name": "how-am-i-doing",
"version": "1.0.0",
"description": "Anna Freud Project for childrens mental health",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint .",
"lint-fix": "node_modules/.bin/eslint . --fix",
"watch:js": "nodemon -e js,css,html server/index.js",
"watch:sass": "sass --watch sass/main.scss:public/css/main.css",
"watch": "npm run watch:sass & npm run watch:js",
"build": "sass -t compressed sass/main.scss public/css/main.css",
"prestart": "npm run build",
"start": "node server/index.js",
"test": "export NODE_ENV=testing && node_modules/.bin/mocha tests/runner.js",
"cover": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha tests/runner.js",
"heroku": "bash build.sh && npm run db:update && node server/index.js",
"db:migrate": "node ./assets/js/db/migrate.js",
"db:update": "node ./assets/js/db/update.js",
"db:flush": "node ./assets/js/db/flush.js",
"db:drop": "node ./assets/js/db/drop.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JackTierney/How-Am-I-Doing.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JackTierney/How-Am-I-Doing/issues"
},
"homepage": "https://github.com/JackTierney/How-Am-I-Doing#readme",
"dependencies": {
"async-waterfall": "^0.1.5",
"bcrypt": "^0.8.6",
"boom": "^3.1.3",
"caminte": "^0.2.12",
"env2": "^2.1.0",
"handlebars": "^4.0.5",
"hapi": "^13.4.0",
"hapi-auth-jwt2": "^6.0.0",
"inert": "^4.0.0",
"joi": "^8.1.0",
"jsonwebtoken": "^7.0.0",
"mailgun-js": "^0.7.11",
"pg": "^4.5.5",
"pg-native": "^1.10.0",
"vision": "^4.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.10.2",
"istanbul": "^0.4.3",
"mocha": "^2.5.2",
"qunit": "^0.9.1"
}
}