-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.23 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.23 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
{
"name": "game-off-2019",
"version": "0.1.0",
"description": "A game for the GitHub Game Off 2019",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --hot --open --config config/webpack.dev.js",
"start:prod": "http-server dist/ -o",
"build": "webpack --config config/webpack.prod.js",
"build-gh-pages": "yarn build && rm -rf assets && cp -r ./dist/* ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christopherbot/game-off-2019.git"
},
"author": "Chris Bot <chrisadambot@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/christopherbot/game-off-2019/issues"
},
"homepage": "https://github.com/christopherbot/game-off-2019#readme",
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"phaser": "^3.20.1"
}
}