-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "simple-html5-rts-game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"build": "WEBPACK_ENV=production webpack",
"serve": "WEBPACK_ENV=development webpack serve",
"socket": "ts-node-dev ./src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/express": "^4.17.17",
"@types/howler": "^2.2.7",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.4",
"easystarjs": "^0.4.4",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"html-webpack-plugin": "^5.5.1",
"mini-css-extract-plugin": "^2.7.6",
"npm": "^9.6.7",
"ts-loader": "^9.4.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
},
"dependencies": {
"debug": "^4.3.4",
"express": "^4.18.2",
"howler": "^2.2.3",
"pixi.js": "^7.2.4",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1"
}
}