-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.52 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
47
48
49
50
51
{
"name": "chaos-boats",
"version": "1.0.0",
"description": "Chaos Bo(a)ts Game Challenge",
"repository": "https://github.com/ChaosGroup/chaos-boats.git",
"author": "Martin Dimitrov <martin@sachmata.com>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14.0"
},
"scripts": {
"start": "parcel serve src/index.html -d .dist --port 3003 --open",
"build": "parcel build src/index.html -d docs --public-url . --no-cache --no-source-maps",
"prettier": "prettier --write \"src/**/*.(js|html)\" \"rating/**/*.js\" \"static/players/*.js\"",
"eslint": "eslint \"src/**/*.js\" \"rating/**/*.js\" \"static/players/*.js\"",
"build-headless": "parcel build src/headless.html -d rating/dist --public-url . --no-cache --no-source-maps",
"players-rating": "yarn build-headless && node rating/index.js && prettier --write src/ratings.json"
},
"dependencies": {
"phaser": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"datauri": "^3.0.0",
"eslint": "^7.28.0",
"fs-extra": "^10.0.0",
"jsdom": "^16.6.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-html-externals": "^0.3.0",
"parcel-plugin-nuke-dist": "^1.0.1",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "^2.3.1"
},
"optionalDependencies": {
"canvas": "^2.8.0"
},
"staticFiles": {
"staticPath": "static",
"excludeGlob": [
"**/*.md",
"**/.eslintrc.yml"
],
"watcherGlob": "**"
},
"externals": {
"**/favicon.png": false
}
}