-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.24 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
{
"version": "1.0.0",
"description": "Circle Drop 2D Web Game Created with Matter JS by @dnm17_",
"name": "circle-drop",
"author": {
"name": "dnm17",
"url": "https://github.com/dfsdanimaulana"
},
"homepage": "https://circle-drop.netlify.com",
"repository": {
"type": "git",
"url": "https://github.com/dfsdanimaulana/circle-drop.git"
},
"license": "MIT",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development --watch",
"serve": "live-server",
"format": "prettier --write **/*.js",
"lint": "eslint **/*.js",
"dev": "npm-run-all --parallel build:dev serve"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-loader": "^9.1.3",
"eslint": "^8.53.0",
"live-server": "^1.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"workbox-webpack-plugin": "^7.0.0"
},
"dependencies": {
"firebase": "^10.5.2",
"howler": "^2.2.4",
"matter-js": "^0.19.0",
"particles.js": "^2.0.0"
}
}