-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 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
{
"name": "pokeql",
"version": "1.0.0",
"description": "A GraphQL implementation of the Pokemon API",
"main": "bin/index.js",
"scripts": {
"start": "node bin/",
"dev": "npm run graph & npm run app",
"graph": "./node_modules/.bin/babel-node graph/index.js",
"app": "webpack-dev-server --config tools/webpack.config.dex.js",
"build": "webpack --config=tools/webpack.config.js",
"update-schema": "babel-node ./tools/update-schema.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws": "0.0.3-2",
"babel-loader": "^6.2.5",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-relay-plugin": "^0.9.3",
"chokidar": "^1.6.0",
"cors": "^2.8.1",
"css-loader": "^0.25.0",
"csv": "^1.1.0",
"express": "^4.14.0",
"express-graphql": "^0.5.4",
"graphql": "^0.7.2",
"isomorphic-fetch": "^2.2.1",
"line-by-line": "^0.1.5",
"pokeapi": "git+https://github.com/PokeAPI/pokeapi.git",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"require-clean": "^0.1.3",
"stream-transform": "^0.1.1",
"style-loader": "^0.13.1"
},
"devDependencies": {
"eslint": "^3.7.0",
"babel-cli": "^6.16.0",
"graphiql": "^0.7.8",
"graphql-relay": "^0.4.3",
"json-loader": "^0.5.4",
"webpack": "^1.13.2",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0"
}
}