-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.43 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pokedex",
"version": "1.0.0",
"description": "Application for ElixirConf EU GraphQL workshop",
"main": "./web/static/js/app.js",
"repository": "https://github.com/ukasiu/pokedex-elixirconfeu-workshops.git",
"contributors": [
{
"name": "Stanisław Chmiela",
"url": "https://github.com/sjchmiela"
},
{
"name": "Łukasz Gurdek",
"url": "https://github.com/ukasiu"
}
],
"scripts": {
"webpack-watch":
"webpack --watch-stdin --progress --color --mode development --config webpack.dev.js",
"relay-watch":
"relay-compiler --src ./src --schema schema.json --extensions js jsx --watch",
"build":
"relay-compiler --src ./src --schema schema.json --extensions js jsx && webpack -p --config webpack.prod.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,json,scss,css,md}": ["prettier --write", "git add"]
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-flow-react-proptypes": "^23.0.0",
"babel-plugin-relay": "^1.5.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.69.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.8.3",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"prettier": "1.12.0",
"sass-loader": "^7.0.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.13",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"@absinthe/socket": "^0.1.10",
"@absinthe/socket-relay": "^0.1.11",
"classnames": "^2.2.5",
"graphql": "^0.13.2",
"material-ui": "^1.0.0-beta.41",
"@material-ui/icons": "^1.0.0-beta.42",
"moment": "^2.22.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-qr-reader": "^2.1.0",
"react-relay": "^1.5.0",
"react-router-dom": "^4.2.2",
"react-waypoint": "^8.0.1",
"relay-compiler": "^1.5.0",
"throttle-debounce": "^1.0.1",
"typeface-roboto": "^0.0.54"
}
}