-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
50
51
52
53
54
{
"name": "beetle-rush",
"version": "1.0.0",
"description": "An endless runner game built with Phaser 3 that makes a dung beetle run through the forest while collecting manure and avoiding predators.",
"main": "index.js",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"build": "webpack --config webpack/prod.js ",
"start": "webpack serve --config webpack/base.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aliciapaz/beetle-rush.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/aliciapaz/beetle-rush/issues"
},
"homepage": "https://github.com/aliciapaz/beetle-rush#readme",
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"canvas": "^2.8.0",
"css-loader": "^5.2.6",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^27.0.4",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.17.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.0",
"html-webpack-plugin": "^5.3.1",
"node-fetch": "^2.6.1",
"phaser": "^3.55.2",
"regenerator-runtime": "^0.13.7",
"terser-webpack-plugin": "^5.1.3",
"webpack": "^5.38.1",
"webpack-merge": "^5.8.0"
}
}