-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.36 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
62
63
64
65
66
67
68
69
70
{
"name": "game",
"packageManager": "[email protected]",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/Sam152/aoe2-micromania",
"devDependencies": {
"@types/d3-quadtree": "^3.0.2",
"@types/howler": "^2.2.7",
"@types/humanize-duration": "^3.27.1",
"@types/lodash": "^4.14.74",
"@types/node": "^17.0.23",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.139.0",
"css-loader": "^6.7.1",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"scripts": {
"predeploy": "ASSET_BASE_URL='/aoe2-micromania' yarn run build",
"deploy-gh": "gh-pages -d dist",
"build": "webpack -c webpack.client.config.js --mode=development && webpack -c webpack.server.config.js --mode=development",
"build-prod": "webpack -c webpack.client.config.js --mode=production && webpack -c webpack.server.config.js --mode=production",
"build-client-prod": "webpack -c webpack.client.config.js --mode=production",
"build-server-prod": "webpack -c webpack.server.config.js --mode=production",
"watch-client": "webpack serve -c webpack.client.config.js --mode=development",
"watch-server": "webpack watch -c webpack.server.config.js --mode=development",
"start-server": "nodemon ./dist-server/bundle.js",
"start": "run-p watch-client watch-server start-server"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/cinzel": "^4.5.7",
"buffer": "^6.0.3",
"bufferutil": "^4.0.6",
"d3-quadtree": "^3.0.1",
"framer-motion": "^6",
"genie-smx": "^1.2.0",
"howler": "^2.2.3",
"humanize-duration": "^3.27.1",
"jascpal": "^0.1.4",
"just-standard-deviation": "^2.0.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "3",
"react-router-dom": "^6.3.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"stinput": "^2.0.2",
"three": "^0.139.2",
"utf-8-validate": "^5.0.9"
},
"prettier": {
"printWidth": 120
}
}