-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 KB
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
{
"name": "phaser-template",
"version": "1.0.0-alpha",
"description": "A template for building Phaser games.",
"author": "Mark <mark@remarkablemark.org>",
"scripts": {
"build": "npm run clean && vite build",
"bundle": "bash scripts/bundle.sh",
"clean": "rm -rf dist",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --noEmit",
"prepare": "husky",
"preview": "vite preview",
"start": "vite --open"
},
"homepage": "https://remarkablegames.org/phaser-template/",
"dependencies": {
"phaser": "3.90.0",
"phaser-jsx": "0.16.2"
},
"devDependencies": {
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@eslint/compat": "2.1.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@types/gtag.js": "0.0.20",
"@types/react": "19.2.15",
"eslint": "10.4.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "13.0.0",
"husky": "9.1.7",
"lint-staged": "17.0.5",
"prettier": "3.8.3",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vite": "8.0.14",
"vite-plugin-html": "3.2.2"
},
"private": true,
"license": "MIT"
}