-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.46 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "flapster",
"version": "1.0.0",
"description": "Reviving Flappy Bird!",
"browserslist": "> 0.5%, last 2 versions, not dead",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel src/index.html",
"build": "npm run clean && parcel build src/index.html --public-url ./",
"dev": "npm run start && parcel watch src/index.html",
"deploy": "npx surge",
"clean": "rimraf dist",
"lint:js": "eslint --ext \".js,.ts\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:prettier",
"lintfix": "prettier --write --list-different . && npm run lint:js --fix",
"prepare": "husky install"
},
"keywords": [
"flappy bird",
"clone",
"kontrajs",
"web game dev"
],
"author": "André Varandas, <andre.m.varandas@gmail.com>",
"license": "MIT",
"dependencies": {
"kontra": "^6.9.1"
},
"staticFiles": {
"staticPath": "src/assets",
"staticOutPath": "assets"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache",
"*.**": "prettier --check --ignore-unknown"
},
"devDependencies": {
"@parcel/transformer-sass": "2.7.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"parcel": "^2.7.0",
"parcel-reporter-static-files-copy": "^1.4.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.54.9"
}
}