-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "roguelike-game",
"version": "1.0.0",
"description": "A Roguelike Dungeon Crawler Game",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.config.development.js",
"build": "webpack --config webpack.config.production.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidzambo/fcc-roguelike-game.git"
},
"author": "David Zambo",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidzambo/fcc-roguelike-game/issues"
},
"homepage": "https://www.dcmf.hu/freecodecamp/roguelike-game/",
"dependencies": {
"clean-webpack-plugin": "^0.1.18",
"lodash": "^4.17.5",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-prop-types": "^0.4.0",
"react-table": "^6.8.0",
"semantic-ui-react": "^0.77.2",
"webpack-merge": "^4.1.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.10",
"html-webpack-plugin": "^2.30.1",
"postcss-loader": "^2.1.1",
"react-hot-loader": "^3.1.3",
"rimraf": "^2.6.2",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^2.11.2"
}
}