-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.01 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
41
{
"name": "floz",
"version": "1.0.0",
"description": "An ounce of water",
"scripts": {
"start": "parcel src/index.html -p 8001 --host localhost",
"build": "parcel build src/index.html --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"author": "Seedmanc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Seedmanc/floz.git"
},
"homepage": "https://github.com/Seedmanc/floz",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"cssnano": "^5.1.12",
"eslint": "^6.8.0",
"minimist": ">=1.2.2",
"parcel-plugin-clean-easy": "1.0.2",
"parcel-plugin-static-files-copy": "2.4.3",
"postcss": "^8.4.14",
"typescript": "^3.8.3"
},
"dependencies": {
"parcel-bundler": "1.12.5",
"phaser": "3.55.2",
"phaser3-rex-plugins": "1.1.70"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}