-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "gato-gordo-15-puzzle",
"version": "1.0.0",
"description": "React implementation of 15-puzzle game",
"main": "/public/index.html",
"scripts": {
"test": "npm test",
"build": "webpack --mode development",
"dev": "webpack-dev-server --mode development",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gato-gordo/15-puzzle.git"
},
"author": "Ignacio Prado",
"license": "ISC",
"bugs": {
"url": "https://github.com/gato-gordo/15-puzzle/issues"
},
"homepage": "https://github.com/gato-gordo/15-puzzle#readme",
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"config": "^2.0.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-modal": "^3.5.1",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-preset-stage-0": "^6.24.1"
}
}