generated from piesku/goodluck
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 908 Bytes
/
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
{
"name": "breakout",
"version": "0.0.1",
"description": "A Breakout clone basd on Good Luck",
"repository": {
"type": "git",
"url": "git+https://github.com/piesku/breakout.git"
},
"contributors": [
"Staś Małolepszy <[email protected]>"
],
"license": "ISC",
"scripts": {
"compile": "tsc",
"compile:watch": "tsc --watch -p .",
"deploy": "npx gh-pages -d ./public/",
"lint": "prettier --check \"src/**/*.ts\"",
"pretty": "prettier --write \"src/**/*.ts\"",
"serve": "live-server --port=1234 --no-browser --quiet public",
"start": "npm-run-all --parallel compile:watch serve"
},
"devDependencies": {
"live-server": "1.2.1",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"rollup": "1.19.4",
"terser": "4.3.1",
"typescript": "3.5.1"
}
}