forked from AlexBHarley/express-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "meanie-express-seed",
"description": "Seed project for Express applications",
"version": "1.0.0",
"homepage": "https://github.com/meanie/express-seed",
"author": {
"name": "Adam Reis",
"email": "[email protected]",
"url": "http://adam.reis.nz/"
},
"contributors": [],
"license": "SEE LICENSE IN LICENSE.md",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/meanie/express-seed"
},
"bugs": {
"url": "https://github.com/meanie/express-seed/issues"
},
"keywords": [],
"engines": {
"node": "^7.2.1"
},
"main": "scripts/server.js",
"scripts": {
"clean": "rm -rf node_modules",
"start": "if [ $NODE_ENV == 'dev' ]; then npm run dev; else npm run prod; fi",
"prod": "node scripts/server.js",
"dev": "nodemon scripts/server.js",
"predev": "lsof -n -i:9229 | grep LISTEN | awk '{print $2}' | xargs kill -9",
"inspect": "nodemon --inspect scripts/server.js",
"lint": "eslint . --fix",
"istanbul": "babel-node ./node_modules/istanbul/lib/cli cover ./node_modules/mocha/bin/_mocha \"app/**/*.spec.js\"",
"test": "npm run istanbul -s",
"coverage": "open -a \"Google Chrome\" ./coverage/lcov-report/index.html",
"posttest": "npm run coverage -s",
"postversion": "git commit -a -m \"[bump] $npm_package_version\"",
"populate": "node scripts/migrate.js populate --data mock",
"update": "node scripts/migrate.js update/$npm_package_version",
"update:remote": "heroku run --app my-application npm run update",
"dump:local": "mongodump -d DB_NAME_LOCAL -o ./migrations/dump",
"dump:remote": "mongodump -h DB_HOST -d DB_NAME -u DB_USER -p DB_PASS -o ./migrations/dump",
"restore:local": "mongorestore -d DB_NAME_LOCAL ./migrations/dump/DB_NAME --drop --noIndexRestore",
"restore:remote": "mongorestore -h DB_HOST -d DB_NAME -u DB_USER -p DB_PASS ./migrations/dump/DB_NAME_LOCAL --drop"
},
"dependencies": {
"bcrypt": "^1.0.1",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"express": "^4.14.0",
"glob": "^7.1.1",
"google-cloud": "^0.45.0",
"handlebars": "^4.0.6",
"i18n": "^0.8.3",
"meanie-express-error-handling": "^2.1.0",
"meanie-express-jwt-service": "^2.0.2",
"meanie-express-raven-service": "^1.0.1",
"meanie-mail-composer": "^1.0.0",
"meanie-mongoose-only-id": "^1.0.1",
"meanie-mongoose-set-properties": "^1.0.1",
"meanie-mongoose-to-json": "^1.0.6",
"meanie-multer-mime-types-filter": "^1.0.1",
"meanie-passport-refresh-strategy": "^1.2.0",
"moment": "^2.17.1",
"mongoose": "^4.7.6",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"sendgrid": "^4.7.1",
"sendgrid-mailer": "^1.0.5",
"yargs": "^6.5.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.11.1",
"express-simulate-latency": "0.0.2",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.2.0",
"mocha-clean": "^1.0.0",
"nodemon": "^1.11.0",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.0",
"sinon-mongoose": "^1.3.0"
}
}