-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "twitch-graphql",
"version": "1.0.0",
"description": "A GraphQL API wrapper for the Twitch API",
"main": "server.js",
"scripts": {
"start": "nodemon server.js --exec babel-node",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdegner0129/twitch-graphql.git"
},
"author": "Jordan Degner <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"express": "^4.14.0",
"express-graphql": "^0.5.4",
"graphql": "^0.7.0",
"node-fetch": "^1.6.0",
"nodemon": "^1.10.2"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0"
}
}