-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 935 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 935 Bytes
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
{
"name": "graphql-swapi-workshop",
"version": "0.0.1",
"description": "GraphQL Star Wars API Workshop",
"main": "src/index.js",
"scripts": {
"start": "babel-node src/index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"graphql",
"swapi",
"workshop"
],
"author": "José Fresco",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"express": "^4.13.3",
"express-graphql": "^0.5.4",
"graphql": "^0.8.2",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-standard": "^1.3.1"
}
}