-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.03 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
{
"name": "tyler-react",
"version": "1.0.0",
"main": "index.js",
"author": "@markhker",
"license": "MIT",
"description": "The game consists in a square matrix of square tiles that will be all of the same color except for one.",
"homepage": "https://github.com/markhker/tyler-react",
"engines": {
"node": "10.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/markhker/tyler-react"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.config.development.js",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production webpack -p --config webpack.config.production.js"
},
"dependencies": {
"@material-ui/core": "^1.2.1",
"babel-polyfill": "^6.26.0",
"firebase": "^5.0.4",
"react": "^16.4.1",
"react-delay-render": "^0.1.2",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"react-imported-component": "^4.5.0",
"react-prop-types": "^0.4.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"redux-saga-firebase": "^0.13.0",
"redux-toolbelt": "^2.1.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"dotenv-webpack": "^1.5.7",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.1.5",
"rimraf": "^2.6.2",
"standard": "^11.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.4"
}
}