-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
55
56
57
58
{
"name": "bear_the_fisher",
"version": "1.0.0",
"description": "2d cartoon fishing game build with Phaser 3",
"main": "./src/index.js",
"scripts": {
"test": "jest",
"dev": "webpack --mode development",
"build": "webpack --mode production --progress",
"watch": "webpack --watch --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8Bts/Bear_The_Fisher.git"
},
"keywords": [
"2d",
"fishing",
"game",
"phaser"
],
"author": "8Bts",
"license": "MIT",
"bugs": {
"url": "https://github.com/8Bts/Bear_The_Fisher/issues"
},
"homepage": "https://github.com/8Bts/Bear_The_Fisher#readme",
"dependencies": {
"express": "^4.17.1",
"jest": "^25.5.4",
"phaser": "^3.54.0",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/preset-env": "^7.13.15",
"@jest/globals": "^26.6.2",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.2.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"file-loader": "^6.2.0",
"fs": "0.0.1-security",
"path": "^0.12.7",
"postcss": "^8.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.19.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.34.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}