-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "break-the-blocks-game",
"version": "1.0.0",
"description": "> built using Three.js & Cannon.js",
"scripts": {
"build-dev": "webpack --config ./webpack.dev.js",
"build-prod": "webpack --config ./webpack.prod.js",
"dev": "webpack-dev-server --config ./webpack.dev.js",
"validate-webpack-dev": "webpack --config ./webpack.dev.js",
"validate-webpack-prod": "webpack --config ./webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiemkist/break-the-blocks-game.git"
},
"author": "tariq-almalki",
"license": "MIT",
"bugs": {
"url": "https://github.com/kiemkist/break-the-blocks-game/issues"
},
"homepage": "https://github.com/kiemkist/break-the-blocks-game#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-syntax-import-assertions": "^7.16.7",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.4",
"babel-regenerator-runtime": "^6.5.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^1.3.6",
"speed-measure-webpack-plugin": "^1.5.0",
"stats.js": "^0.17.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"refresh-rate": "^1.0.0"
}
}