-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "keep-your-sheep",
"version": "0.1.0",
"description": "An arcade game with symbol recognition.",
"author": "Volodymyr Mikhav <mihaw.wolodymyr@gmail.com>",
"main": "index.js",
"scripts": {
"dev": "webpack",
"prod": "webpack --config webpack.production.config.js",
"deploy": "npm run prod && node deploy.js",
"cordova": "webpack --config webpack.cordova.config.js"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-polyfill": "^6.26.0",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"expose-loader": "^0.7.3",
"ftp-deploy": "^2.3.1",
"html-webpack-plugin": "^3.2.0",
"workbox-webpack-plugin": "^4.0.0",
"terser-webpack-plugin": "^2.2.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"phaser": "^3.0.0-beta.4",
"webfontloader": "^1.6.28"
}
}