-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 943 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
32
33
{
"name": "flappy-bird",
"scripts": {
"start": "parcel ./src/index.html --open",
"build": "parcel build src/index.html",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -c tslint.json --fix 'src/**/*.ts'",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\""
},
"license": "MIT",
"version": "1.1.0",
"devDependencies": {
"cssnano": "^4.1.10",
"husky": "^4.2.5",
"node-sass": "^4.14.0",
"prettier": "2.0.5",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {
"lodash": "^4.17.15",
"parcel-bundler": "^1.12.4",
"phaser": "^3.23.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:write"
}
}
}