-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "js13kgames_2022",
"version": "1.0.0",
"description": "entry for js13kgames 2022",
"main": "index.js",
"scripts": {
"buildProd": "webpack --mode production --config webpack.prod",
"buildDev": "webpack --mode development --config webpack.dev",
"start": "webpack-dev-server --config webpack.dev",
"portForward": "C:/Tools/Android/platform-tools/adb.exe reverse tcp:1337 tcp:1337"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/sorskoot/js13kgames_2022.git"
},
"author": "Sorskoot",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/sorskoot/js13kgames_2022/issues"
},
"homepage": "/~https://github.com/sorskoot/js13kgames_2022#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"rimraf": "^3.0.2",
"sass": "^1.55.0",
"sass-loader": "^8.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"babylonjs": "^5.28.0",
"babylonjs-loaders": "^5.29.0"
}
}