-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.96 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
{
"name": "phaser-jam-template",
"version": "1.5.0",
"description": "A Phaser 3 template to get you started on your jam.",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack/devconfig.ts --env dev",
"build": "webpack --config webpack/prodconfig.ts --env prod",
"test": "jest",
"lint": "eslint \"src/**\" --fix . . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n00begon/phaser-jam-template.git"
},
"keywords": [
"phaser"
],
"author": "Tim Neumegen",
"Licence": "MIT",
"bugs": {
"url": "https://github.com/n00begon/phaser-jam-template/issues"
},
"homepage": "https://github.com/n00begon/phaser-jam-template#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"pre-push": "npm run build"
}
},
"dependencies": {
"@types/webfontloader": "1.6.38",
"phaser": "3.70.0",
"webfontloader": "1.6.28"
},
"devDependencies": {
"@types/copy-webpack-plugin": "10.1.0",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@types/node": "20.11.16",
"@types/terser-webpack-plugin": "5.2.0",
"@types/webpack": "5.28.5",
"@types/webpack-dev-server": "4.7.2",
"@types/zip-webpack-plugin": "3.0.6",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-tsdoc": "0.2.17",
"html-webpack-plugin": "5.6.0",
"husky": "9.0.10",
"jest": "29.7.0",
"prettier": "3.2.5",
"terser-webpack-plugin": "5.3.10",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"webpack": "5.90.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"zip-webpack-plugin": "4.0.1"
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
}
}