-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1021 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
34
35
36
37
38
39
40
41
42
43
{
"scripts": {
"start": "webpack-dev-server --config ./config/webpack/webpack.config.js",
"build": "webpack --config ./config/webpack/webpack.config.js",
"lint": "tslint './src/**/*.ts'",
"fmt": "prettier --write './src/**/*.ts' '*.html'",
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"phaser": "^3.15.1"
},
"devDependencies": {
"copy-webpack-plugin": "^4.6.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.15.1",
"ts-loader": "^5.2.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.3",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint",
"git add"
],
"*.html": [
"prettier --write",
"git add"
]
}
}