-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "webgl-game",
"version": "1.0.0",
"description": "Proof of concept for a WebGL game.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --mode=production",
"start": "webpack-dev-server -d --host 0.0.0.0 --config webpack.config.js --hot --mode development"
},
"author": "Franco Roura",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.8.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"assets-webpack-plugin": "^4.0.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-three-fiber": "^4.0.27",
"sass": "^1.26.2",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^2.3.5",
"three": "^0.115.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}