-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.94 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "phaser-3-boilerplate",
"version": "2.0.1",
"description": "Phaser 3 Boilerplate project for rapid development.",
"author": "Christian Holt (Sidaroth@protonmail.com)",
"contributors": [
{
"name": "Christian Holt",
"email": "sidaroth@protonmail.com"
},
{
"name": "Øyvind Nordli",
"email": "oe.nordli@gmail.com"
}
],
"main": "src/index.ts",
"scripts": {
"start": "pnpm run dev",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts && tsc",
"lint:fix": "eslint src --ext .ts --fix"
},
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"repository": {
"type": "git",
"url": "git+https://github.com/sidaroth/Phaser3.Boilerplate.git"
},
"devDependencies": {
"@types/dat.gui": "^0.7.10",
"@types/stats": "^0.16.30",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"esbuild": "^0.19.4",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"rollup-plugin-strip-code": "^0.2.7",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"@types/node": "^20.8.5",
"dat.gui": "^0.7.9",
"immutable": "^4.3.4",
"phaser": "^3.60.0",
"sass": "^1.69.3",
"stats.js": "^0.17.0",
"uuid": "^9.0.1"
}
}