generated from ourcade/phaser3-parcel-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "Passage",
"version": "1.0.0",
"description": "A retro-inspired mystery role playing game.",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "parcel src/index.html -p 8000",
"build": "parcel build index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"postbundle": "copyfiles -u 1 public/*",
"bundle": "tsc"
},
"author": "Passengers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/2202-capstone-fsa/Passage"
},
"homepage": "https://github.com/2202-capstone-fsa/Passage",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@types/node": "^17.0.32",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^6.8.0",
"minimist": ">=1.2.2",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"typescript": "^4.6.4"
},
"dependencies": {
"parcel": "^2.6.0",
"phaser": "^3.55.2",
"tiles": "^0.8.0",
"webfontloader": "^1.6.28"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}