generated from piesku/goodluck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.1 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
{
"name": "goodluck",
"version": "2.0.0",
"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": {
"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"
},
"devDependencies": {
"@types/webgl2": "0.0.5",
"live-server": "1.2.1",
"npm-run-all": "4.1.5",
"prettier": "2.0.1",
"rollup": "2.1.0",
"terser": "4.6.6",
"typescript": "3.8.3"
},
"dependencies": {
"98.css": "^0.1.6"
}
}