generated from Autapomorph/phaser3-project-template
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
86 lines (86 loc) · 2.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dino",
"description": "A Chrome Dino game clone built with Phaser 3",
"version": "1.2.1",
"homepage": "https://github.com/Autapomorph/dino",
"author": "Autapomorph (https://github.com/Autapomorph)",
"repository": {
"type": "git",
"url": "git+https://github.com/Autapomorph/dino"
},
"bugs": {
"url": "https://github.com/Autapomorph/dino/issues"
},
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"scripts": {
"start": "webpack serve --config webpack/dev.js",
"build": "webpack --config webpack/prod.js",
"lint": "run-s -c lint:js lint:styles",
"lint:js": "eslint src/**/*.js",
"lint:styles": "stylelint src/**/*.css",
"lint:staged": "lint-staged --relative",
"cm": "cz",
"prepare": "husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks"
},
"dependencies": {
"phaser": "^3.53.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.0.0",
"core-js": "^3.9.1",
"cross-env": "^7.0.3",
"css-loader": "^5.1.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv-webpack": "^7.0.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-webpack-plugin": "^2.5.2",
"favicons": "^6.2.1",
"favicons-webpack-plugin": "^5.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.3.0",
"husky": "^5.1.3",
"ignore": "^5.1.8",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.3.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.7",
"postcss-loader": "^5.1.0",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^21.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-merge": "^5.7.3",
"webpackbar": "^5.0.0-3",
"workbox-webpack-plugin": "^6.1.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}