-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "arkanoid",
"version": "1.0.0",
"description": "a simple breakout clone",
"main": "index.js",
"scripts": {
"build": "rimraf dist && webpack --mode production",
"dev": "webpack-dev-server --mode development --open --watch",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirillkushpel/arkanoid.git"
},
"keywords": [
"game",
"breakout"
],
"author": "Kushpel Kirill",
"license": "ISC",
"bugs": {
"url": "https://github.com/kirillkushpel/arkanoid/issues"
},
"homepage": "https://github.com/kirillkushpel/arkanoid#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"file-loader": "^4.2.0",
"gh-pages": "~2.1.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-md5-hash": "0.0.6"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"core-js": "^3.1.4"
}
}