-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "acwern",
"version": "0.1",
"description": "Apache Flink concept visualisation framework",
"scripts": {
"start": "parcel src/index.html -p 8000 --dist-dir output",
"build": "rm -rf dist/* && parcel build src/index.html --public-url ./",
"publish": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photonstorm/phaser3-typescript-project-template.git"
},
"author": "Mika Naylor <mika@ververica.com>, David Anderson <david@ververica.com>, Victor Xu <victor@ververica.com>, Joe Moser <joe@ververica.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ververica/acwern/issues"
},
"homepage": "https://github.com/ververica/acwern/",
"devDependencies": {
"@types/node": "^16.11.7",
"minimist": ">=1.2.5",
"parcel": "^2.0.1",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-reporter-static-files-copy": "latest",
"typescript": "^4.4.4"
},
"dependencies": {
"phaser": "^3.55.2"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}