-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "minesweeper",
"version": "1.0.5",
"description": "MineSweeper is a clone of one of the most popular classic games fully written on react.js",
"main": "index.js",
"scripts": {
"dev-server": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bashanov/minesweeper.git"
},
"keywords": [
"react",
"reactjs",
"react.js",
"minesweeper"
],
"author": "Bashanov Evgeny",
"license": "MIT",
"bugs": {
"url": "https://github.com/bashanov/minesweeper/issues"
},
"homepage": "https://github.com/bashanov/minesweeper#readme",
"dependencies": {
"classnames": "^2.2.6",
"express": "^4.16.4",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}