forked from brigadehub/brigadehub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.71 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "brigadehub",
"version": "1.0.0-alpha.2",
"repository": {
"type": "git",
"url": "https://github.com/sfbrigade/brigadehub.git"
},
"engines": {
"node": ">=4"
},
"scripts": {
"start": "node app.js",
"pretest": "standard",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "echo 'no e2e tests available.'",
"test:unit": "echo 'no unit test available.'",
"db:clear": "./scripts/database-clear",
"db:seed": "./scripts/database-seed",
"develop": "nodemon app.js",
"cleaninstall": "rm -rf node_modules && npm install",
"lint": "standard",
"validate": "npm ls"
},
"dependencies": {
"async": "^1.5.2",
"bcrypt-nodejs": "^0.0.3",
"bitgo": "0.11.64",
"body-parser": "^1.14.2",
"cheerio": "^0.19.0",
"clockwork": "^0.1.0",
"compression": "^1.6.0",
"connect-mongo": "^1.1.0",
"cookie-parser": "^1.4.1",
"dotenv": "^1.2.0",
"errorhandler": "^1.4.2",
"express": "^4.13.3",
"express-flash": "^0.0.2",
"express-session": "^1.13.0",
"express-validator": "^2.18.0",
"faker": "^3.1.0",
"fbgraph": "^1.1.0",
"github-api": "^0.10.7",
"glob": "^7.0.3",
"istanbul": "^0.4.2",
"jade": "^1.11.0",
"lastfm": "^0.9.2",
"link-header-parser": "0.0.2",
"lob": "^3.7.0",
"lodash": "^4.0.0",
"lusca": "^1.3.0",
"marked": "^0.3.5",
"method-override": "^2.3.5",
"moment": "^2.11.1",
"moment-timezone": "^0.5.3",
"mongoose": "^4.3.5",
"mongoose-unique-validator": "^1.0.2",
"morgan": "^1.6.1",
"node-sass-middleware": "^0.9.7",
"node-uuid": "^1.4.7",
"node-version-checker": "^1.0.6",
"nodemailer": "^2.0.0",
"passport": "0.3.2",
"passport-github": "^1.0.0",
"passport-local": "^1.0.0",
"passport-meetup": "^1.0.0",
"passport-oauth": "^1.0.0",
"passport-openid": "^0.4.0",
"paypal-rest-sdk": "^1.6.8",
"request": "^2.67.0",
"require-dir": "^0.3.0",
"selectn": "1.0.9",
"serve-favicon": "^2.3.0",
"standard": "^6.0.4",
"twilio": "^2.8.0",
"twit": "^2.1.1",
"underscore": "^1.8.3",
"uuid": "^2.0.1",
"yui": "^3.18.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"blessed": "^0.1.81",
"blue-tape": "^0.2.0",
"chai": "^3.4.1",
"goosestrap": "^1.0.0",
"mocha": "^2.3.4",
"mongodb": "^2.1.7",
"multiline": "^1.0.2",
"nodemon": "^1.9.1",
"precommit-hook": "latest",
"seedling": "0.0.10",
"supertest": "^1.1.0",
"tape": "^4.5.1",
"tape-catch": "^1.0.4"
},
"standard": {
"globals": [
"it",
"beforeEach",
"describe",
"afterEach",
"after"
]
},
"license": "ISC",
"pre-commit": [
"lint",
"test"
]
}