This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.53 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": "tanks-typescript-canvas-socketio",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm install && concurrently --kill-others \"npm run start:server\" \"npm run watch:client\"",
"start:server": "kill-port -s 3000 && ts-node -r dotenv/config server/index.ts",
"watch": "npm install && concurrently --kill-others \"npm run watch:server\" \"npm run watch:client\"",
"watch:server": "kill-port -s 3000 && nodemon -r dotenv/config --delay 1 --watch server --watch shared --ext ts --exec ts-node server/index.ts",
"watch:client": "kill-port -s 8080 && webpack serve --no-stats",
"build:client": "webpack",
"build:client:prod": "webpack --env production",
"build:server": "tsc --project tsconfig.json",
"format": "prettier --write client/ server/ shared/",
"lint": "eslint client/ server/ shared/",
"lint:fix": "eslint --fix client/ server/ shared/"
},
"author": "",
"license": "MIT",
"dependencies": {
"@rivet-gg/api": "^23.2.0-rc1",
"socket.io": "^4.5.4"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"html-webpack-plugin": "^5.5.0",
"kill-port": "^2.0.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"socket.io-client": "^4.5.4",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
}
}