-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 993 Bytes
/
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": "cutie-tanks",
"version": "1.5",
"description": "Shoot 'em all arcade game",
"scripts": {
"start": "parcel src/index.html -p 3000",
"dev": "parcel src/index.html -p 3000",
"build": "parcel build src/index.html --out-dir dist --public-url .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Robin Boers",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/robinboers/cutie-tanks"
},
"homepage": "https://robijntje.itch.io/cutie-tanks",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"babel-eslint": "^10.1.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"minimist": ">=1.2.2",
"parcel-bundler": "^1.12.5",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.5.1"
},
"dependencies": {
"phaser": "^3.52.0"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}