-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "html5-game",
"private": true,
"version": "1.0.0",
"main": "index.bundle.js",
"description": "A simple game with html5 (canvas)",
"repository": "https://github.com/jucesarsilva/html5-game",
"license": "MIT",
"scripts": {
"clean:js": "rimraf ./index.bundle.js",
"clean:html": "rimraf ./index.html",
"build": "yarn clean:html && yarn clean:js && webpack --mode production",
"start": "webpack-dev-server --port 3002 --mode development"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.6",
"@babel/preset-flow": "^7.7.4",
"@babel/preset-stage-2": "^7.0.0",
"@babel/runtime": "^7.7.6",
"babel-loader": "^8.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"jshint": "^2.9.4",
"node-sass": "^4.14.1",
"rimraf": "^3.0.0",
"css-loader": "^5.2.7",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"webpack": "4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "3.10.3"
}
}