generated from Acquati/phaser-3-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "legend-of-faune",
"version": "1.0.0",
"description": "Legend of Faune, a Phaser 3 game, made with Typescript and compiled with Parcel v2.",
"license": "MIT",
"keywords": [
"Phaser",
"Phaser 3",
"Phaser3",
"Html5 Game",
"Phaser Boilerplate",
"Phaser Template",
"TypeScript",
"Parcel",
"Phaser Framework"
],
"author": {
"name": "Leandro Acquati",
"email": "leandroacquati@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Acquati/legend-of-faune"
},
"homepage": "https://github.com/Acquati/legend-of-faune",
"scripts": {
"dev": "parcel src/index.html -p 8080",
"build": "parcel build src/index.html --dist-dir dist",
"build-itchio": "parcel build src/index.html --dist-dir dist --public-url ./",
"start": "parcel serve src/index.html -p 8080",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"parcel": "^2.0.1",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-reporter-static-files-copy": "^1.3.4",
"typescript": "^4.5.4"
},
"dependencies": {
"phaser": "^3.55.2",
"phaser3-rex-plugins": "^1.1.65"
}
}