-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 894 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
31
{
"name": "anime-bingo",
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@types/html2canvas": "^0.0.33",
"@types/parcel-env": "^0.0.0",
"assemble": "~0.3.11",
"gh-pages": "^1.2.0",
"grunt": "~0.4.0",
"husky": "^0.14.3",
"parcel": "^2.12.0",
"prettier": "1.13.7",
"pretty-quick": "^1.6.0",
"rimraf": "^2.6.2",
"styles": "^0.2.1",
"typescript": "^2.9.2"
},
"dependencies": {
"html2canvas": "^1.0.0-alpha.12",
"hyperapp": "^1.2.8"
},
"scripts": {
"build": "rimraf dist && parcel build --public-url ./ src/index.html",
"deploy": "npm run build && cp CNAME dist/ && gh-pages -d dist -m 'Updating gh-pages'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css}'",
"precommit": "tsc --noEmit && pretty-quick --staged",
"start": "parcel src/index.html",
"typecheck": "tsc --noEmit"
}
}