-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.87 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
{
"name": "gameoflife-grapqhlclient",
"version": "1.0.0",
"description": "Game of Life Client using Grapqhl",
"main": "build/bundle.js",
"scripts": {
"build": "webpack --config=webpack/webpack.production.js",
"build:dev": "webpack --config=webpack/webpack.development.js",
"eslint": "eslint --ignore-path .gitignore ./src",
"start:dev": "npm run build:dev && http-server build",
"start:prod": "npm run build && http-server build",
"analyze:prod": " webpack --config=webpack/webpack.production.js --json > ./build/stats.json && webpack-bundle-analyzer ./build/stats.json",
"deploy-gh-pages": "sh scripts/deploy-gh-pages"
},
"author": "Richard Hidalgo",
"license": "MIT",
"dependencies": {
"apollo-cache-inmemory": "^1.4.2",
"apollo-client": "^2.4.12",
"apollo-link": "^1.2.6",
"apollo-link-http": "^1.5.9",
"apollo-link-ws": "^1.0.12",
"apollo-utilities": "^1.1.2",
"deepmerge": "^2.2.1",
"eslint": "^5.12.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"graphql": "^0.13.2",
"graphql-tag": "^2.10.1",
"konva": "^2.6.0",
"react": "^16.7.0",
"react-apollo": "^2.4.0",
"react-dom": "^16.7.0",
"react-konva": "^16.7.1",
"subscriptions-transport-ws": "^0.9.15"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint-config-airbnb": "^17.1.0",
"html-webpack-plugin": "^3.2.0",
"life-game": "^1.0.75",
"prop-types": "^15.6.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1"
}
}