-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.62 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
{
"name": "boaty-boat",
"homepage": "https://shadskii.github.io/boaty-boat",
"version": "2.0.0",
"description": "Help Boaty Boat survive his boating adventure",
"author": "Jake Hassel <[email protected]>",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode development --open",
"build": "webpack --config webpack.config.js",
"deploy": "webpack --config webpack.config.js --mode production && gh-pages -d dist",
"cleanEnv": "rm -rf node_modules && npm install",
"test": "eslint ./src/**/**.js"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.2",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.23.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"expose-loader": "^0.7.5",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"prettier-eslint": "^8.8.2",
"raw-loader": "^0.5.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"phaser": "3.10.1"
}
}