-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "phaser3-parcel-template",
"version": "1.0.0",
"description": "A template project for Phaser 3 using Parceljs",
"homepage": "https://spring-2022-cisc374.github.io/mvp-beesim/gh-pages",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"start": "parcel src/index.html -p 8000",
"build": "parcel build src/index.html --out-dir dist --public-url https://spring-2022-cisc374.github.io/mvp-beesim/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "supertommy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Spring-2022-CISC374/mvp-beesim.git"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"gh-pages": "^3.2.3",
"minimist": ">=1.2.2",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"typescript": "^4.6.2"
},
"dependencies": {
"phaser": "^3.55.2"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}