-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "githunt",
"version": "1.0.0",
"description": "Example app for Apollo",
"main": "index.js",
"scripts": {
"start": "nodemon api/index.js --watch api --exec babel-node",
"lint": "eslint api",
"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"
},
"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.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.4.5",
"nodemon": "^1.9.2"
},
"dependencies": {
"apollo-server": "^0.2.1",
"body-parser": "^1.15.1",
"connect-session-knex": "^1.0.23",
"dataloader": "^1.2.0",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"graphql": "^0.6.1",
"graphql-tools": "^0.6.2",
"knex": "^0.11.3",
"lodash": "^4.12.0",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"request-promise": "^3.0.0",
"sqlite3": "^3.1.4"
}
}