forked from TimMikeladze/GitHunt-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "githunt-api",
"version": "1.0.0",
"description": "Example app for Apollo",
"scripts": {
"start": "nodemon api/index.js --watch api --exec babel-node",
"lint": "eslint api migrations seeds",
"test": "mocha --compilers js:babel-core/register --reporter spec --full-trace 'api/**/*.test.js' && npm run lint",
"seed": "knex seed:run",
"migrate": "knex migrate:latest"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/GitHunt.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollostack/GitHunt/issues"
},
"homepage": "https://github.com/apollostack/GitHunt#readme",
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.9",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.17.0",
"babel-register": "6.16.3",
"chai": "3.5.0",
"eslint": "3.13.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.9.0",
"mocha": "3.2.0",
"nodemon": "1.11.0"
},
"dependencies": {
"body-parser": "1.15.2",
"connect-session-knex": "1.3.0",
"dataloader": "1.2.0",
"dotenv": "4.0.0",
"express": "4.14.0",
"express-session": "1.14.2",
"extractgql": "^0.1.11",
"graphql": "0.7.2",
"graphql-server-express": "^0.4.1",
"graphql-subscriptions": "0.2.2",
"graphql-tools": "0.9.0",
"knex": "0.12.6",
"lodash": "4.17.4",
"passport": "0.3.2",
"passport-github": "1.1.0",
"reddit-score": "0.0.1",
"request-promise": "4.1.1",
"sqlite3": "3.1.8",
"subscriptions-transport-ws": "0.2.6"
}
}