-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"scripts": {
"test": "node_modules/.bin/_mocha",
"start": "cross-env NODE_ENV=production node index.js",
"start:dev": "cross-env NODE_ENV=development node index.js",
"cover": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha",
"probot": "probot",
"probot:run": "probot run ./bot/index.js --private-key ./bot_key.pem"
},
"dependencies": {
"@octokit/auth-oauth-app": "^3.0.4",
"@octokit/rest": "^18.0.0",
"body-parser": "^1.17.1",
"csurf": "^1.9.0",
"escape-html": "^1.0.3",
"express": "^4.15.2",
"express-basic-auth": "^1.0.2",
"express-hbs": "^1.0.4",
"express-session": "^1.15.2",
"natives": "^1.1.6",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"passport-oauth2": "^1.4.0",
"pg": "^6.1.5",
"pg-hstore": "^2.3.2",
"probot": "^9.11.3",
"request-promise": "^4.2.1",
"rsvp": "^3.5.0",
"sequelize": "^4.44.4"
},
"name": "boss-backend",
"version": "0.0.3",
"description": "Backend API to track BOSS submissions",
"main": "server.js",
"repository": "http://github.com/coding-blocks/boss-backend",
"author": "Arnav Gupta <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.1",
"chai-http": "^3.0.0",
"cross-env": "^7.0.2",
"gulp": "^3.9.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"nock": "^12.0.3",
"request": "^2.81.0",
"smee-client": "^1.1.0"
}
}