-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.16 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
{
"name": "@fpellicero/arkapong",
"version": "1.0.0",
"description": "An Arkanoid and Pong mashup made with Phaser 3.",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode=development",
"start": "npm run build && serve -s dist",
"build": "webpack --mode=production"
},
"author": "Francesc Pellicero <[email protected]> (https://github.com/fpellicero)",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist"
}
},
"devDependencies": {
"@types/lodash": "^4.14.141",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"ejs-compiled-loader": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.5",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.8.0",
"phaser": "^3.19.0",
"serve": "^11.1.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.0.4",
"typescript": "3.3.3",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.5.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
}
}