-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.56 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "procgenbhell",
"version": "1.0.0",
"description": "A procedurally generated bullet hell game built with three.js, ecsy, react, and tone.js",
"repository": {
"type": "git",
"url": "https://github.com/nikolajbaer/procgen-bhell.git"
},
"main": "webpack.config.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --open --config ./webpack.dev.js --host 0.0.0.0",
"test": "jest"
},
"author": "Nikolaj Baer",
"license": "MIT",
"dependencies": {
"@tweenjs/tween.js": "^18.6.4",
"cannon-es": "^0.16.0",
"css-loader": "^5.1.3",
"ecsy": "^0.4.2",
"firebase": "^8.3.0",
"mobx": "^6.1.8",
"mobx-react-lite": "^3.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"three": ">=0.125.0",
"tone": "^14.7.77"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"babel-loader": "^8.2.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"postcss-loader": "^5.2.0",
"style-loader": "^2.0.0",
"webpack": "^5.28.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
}
}