generated from piesku/goodluck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.2 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
{
"name": "goodluck",
"version": "0.0.1",
"description": "A template for creating small and fast browser games",
"repository": {
"type": "git",
"url": "git+https://github.com/piesku/goodluck.git"
},
"contributors": [
"Staś Małolepszy <[email protected]>",
"Michał Budzyński <[email protected]>"
],
"license": "ISC",
"scripts": {
"build": "npm-run-all --serial compile rollup",
"compile": "tsc",
"compile:watch": "tsc --watch -p .",
"lint": "prettier --check \"src/**/*.ts\"",
"pretty": "prettier --write \"src/**/*.ts\"",
"rollup": "rollup -c && printf \"Size gzipped (including HTML): %s bytes\n\" $(gzip -r public/opt/index.html public/opt/game.min.js --stdout | wc -c)",
"serve": "live-server --port=1234 --no-browser --quiet public",
"start": "npm-run-all --parallel compile:watch serve"
},
"devDependencies": {
"@types/webgl2": "0.0.4",
"live-server": "1.2.1",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"rollup": "1.19.4",
"rollup-plugin-babel-minify": "9.0.0",
"terser": "4.3.1",
"typescript": "3.5.1"
}
}