This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "phaser3-project-template",
"version": "1.1.0",
"description": "A Phaser 3 Project Template",
"homepage": "https://github.com/photonstorm/phaser3-project-template#readme",
"bugs": {
"url": "https://github.com/photonstorm/phaser3-project-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photonstorm/phaser3-project-template.git"
},
"license": "MIT",
"author": "Richard Davey <rdavey@gmail.com> (http://www.photonstorm.com)",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack/prod.js ",
"publish-github": "git subtree push --prefix dist origin gh-pages",
"precommit": "lint-staged",
"start": "webpack-dev-server --config webpack/base.js --open",
"test:lint": "eslint .",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"phaser": "^3.16.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "1.0.0-rc.13",
"jest": "^24.7.1",
"lint-staged": "7.2.2",
"prettier": "1.14.2",
"raw-loader": "^1.0.0",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php"
}