-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.03 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.03 KB
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
{
"name": "snake-game",
"version": "1.0.0",
"description": "snake game in reactjs/redux",
"main": "index.ejs",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack-dev-server --mode=development --hot",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"homepage": "https://pablomarch.github.io/snake-game/",
"repository": {
"type": "git",
"url": "github:pablomarch/snake-game.git"
},
"bugs": {
"url": "https://trello.com/b/4TqxzS0R",
"email": "support@orbitdevs.com"
},
"keywords": [
"javascript",
"webpack",
"material-ui",
"workbox",
"es6/es7",
"jsx"
],
"author": "Pablo Marchena",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^1.5.1",
"es6-promise": "^4.2.4",
"exports-loader": "^0.7.0",
"jss": "^9.8.7",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-jss": "^8.6.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-actions": "^2.4.0",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-loader": "^2.1.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"pwa-manifest-webpack-plugin": "^1.0.5",
"react-hot-loader": "^4.3.4",
"react-jss-hmr": "^0.1.3",
"sass-loader": "^7.0.3",
"style-loader": "^0.22.1",
"url-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3",
"workbox-webpack-plugin": "^3.4.1"
}
}