-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.84 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
64
{
"name": "react-relay-pokemon",
"description": "Use React & Relay as your Pokedex!",
"version": "1.0.0",
"author": {
"name": "Lucas Bento da Silva",
"email": "[email protected]",
"url": "https://github.com/lucasbento"
},
"bugs": {
"url": "https://github.com/lucasbento/react-relay-pokemon/issues"
},
"dependencies": {
"babel-relay-plugin": "0.10.0",
"material-ui": "^0.16.5",
"react": "15.4.1",
"react-dom": "15.4.1",
"react-relay": "^0.10.0",
"react-router": "3.0.1",
"react-router-relay": "^0.13.5",
"react-tap-event-plugin": "2.0.1"
},
"devDependencies": {
"babel-core": "6.20.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.9",
"babel-plugin-transform-react-jsx-source": "^6.9.0",
"babel-polyfill": "6.20.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"babel-register": "6.18.0",
"clean-webpack-plugin": "0.1.15",
"dotenv-webpack": "1.3.2",
"eslint": "3.13.1",
"eslint-plugin-react": "6.8.0",
"html-webpack-plugin": "2.26.0",
"jsdom": "9.8.3",
"mocha": "3.2.0",
"react-addons-test-utils": "15.4.1",
"react-hot-loader": "3.0.0-beta.5",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"homepage": "https://github.com/lucasbento/react-relay-pokemon#readme",
"keywords": [
"pokemon",
"pogoapi",
"pokeapi",
"koa",
"graphql",
"relay",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/lucasbento/react-relay-pokemon.git"
},
"scripts": {
"start": "webpack-dev-server --config webpack.config.js --progress --profile --colors",
"build": "NODE_ENV=production webpack --production --config webpack.prod.config.js --progress --profile --colors",
"lint": "eslint --ext js src || exit 0"
}
}