generated from piesku/goodluck
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.29 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
{
"name": "goodluck",
"version": "0.0.0",
"private": true,
"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 <stas@piesku.com>",
"Michał Budzyński <michal@virtualdesign.pl>"
],
"license": "ISC",
"scripts": {
"clean": "find . -type d -name node_modules -prune -o \\( -name '*.js' -o -name '*.js.map' \\) -exec rm {} +",
"compile": "tsc",
"compile:watch": "tsc --watch -p .",
"lint": "prettier --check \"**/*.ts\"",
"pretty": "prettier --write \"**/*.ts\"",
"serve": "live-server --port=1234 --no-browser --quiet .",
"start": "npm-run-all --parallel compile:watch serve",
"test": "npm run clean && npm run lint && npm run compile"
},
"devDependencies": {
"@types/webgl2": "0.0.5",
"htmlnano": "^0.2.6",
"live-server": "1.2.1",
"npm-run-all": "4.1.5",
"posthtml-cli": "^0.7.0",
"posthtml-inline-assets": "^3.1.0",
"prettier": "2.1.x",
"rollup": "2.15.0",
"terser": "4.7.0",
"typescript": "4.0.x"
},
"engines": {
"node": "12.x"
}
}