-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "sokoban",
"version": "1.0.0",
"description": "Classic Sokoban in the browser",
"main": "index.js",
"engines": {
"npm": "6.4.1",
"node": "10.10.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --env dev --progress --profile --colors",
"build:dev": "webpack --env dev --progress --profile --colors",
"build:prod": "webpack --env prod --progress --profile --colors",
"start": "node server.js",
"heroku-postbuild": "webpack --env prod -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevincoleman/sokoban.git"
},
"author": "Kevin N. Coleman",
"license": "ISC",
"bugs": {
"url": "https://github.com/kevincoleman/sokoban/issues"
},
"homepage": "https://github.com/kevincoleman/sokoban#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"style-loader": "^0.23.0",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.8"
},
"dependencies": {
"arrow-keys-react": "^1.0.6",
"express": "^4.16.4",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-router": "^4.4.0-alpha.1",
"react-router-dom": "^4.3.1"
}
}