generated from remarkablegames/phaser-platformer
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "inversion",
"version": "1.0.0",
"description": "A template for building Phaser platformer games.",
"author": "Mark <[email protected]>",
"source": "public/index.html",
"scripts": {
"build": "parcel build",
"clean": "rm -rf .parcel-cache/ dist/",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"postinstall": "husky install",
"start": "parcel --open",
"tsc": "tsc --noEmit"
},
"homepage": "https://remarkablegames.org/inversion/",
"dependencies": {
"phaser": "3.55.2"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@parcel/packager-raw-url": "^2.2.1",
"@parcel/transformer-webmanifest": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"parcel": "^2.2.1",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"typescript": "^4.5.5"
},
"private": true,
"license": "MIT"
}