-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.74 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": "minecraft-talk",
"private": true,
"license": "UNLICENSED",
"version": "1.0.0",
"description": "A minecraft plugin allowing players to communicate over a website while playing.",
"author": "Johannes Garz <[email protected]> (https://garz.dev/)",
"type": "module",
"scripts": {
"clean": "rimraf build",
"build:server": "tsc -b ./server",
"build:client": "vite build --config ./client/vite.config.ts",
"build": "yarn clean && concurrently --prefix \"[{name}]\" --names \"SERVER,CLIENT\" -c \"bgBlue.bold,bgGreen.bold\" \"yarn build:server\" \"yarn build:client\"",
"start": "node --import=extensionless/register ./build/server/index.js",
"dev:server": "cross-env NODE_ENV=development tsx watch --clear-screen=false --tsconfig server/tsconfig.json ./server/index.ts",
"dev:client": "vite --host=127.0.0.1 --port=3000 --config ./client/vite.config.ts",
"dev": "concurrently --prefix \"[{name}]\" --names \"SERVER,CLIENT\" -c \"bgBlue.bold,bgGreen.bold\" \"yarn dev:server\" \"yarn dev:client\"",
"lint": "prettier --check --ignore-path .gitignore . '!./data' && eslint './**/*.{ts,tsx}' --ignore-path .gitignore",
"format": "prettier -w --ignore-path .gitignore . '!./data' && eslint --fix './**/*.{ts,tsx}' --ignore-path .gitignore",
"ncu": "ncu -u"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/cookie-signature": "^1.1.2",
"@types/express": "^4.17.21",
"@types/node": "^20.11.20",
"@types/node-turn": "^0.0.5",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/react-router-dom": "^5.3.3",
"@types/webrtc": "^0.0.42",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"npm-check-updates": "^16.14.15",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.1",
"rimraf": "^5.0.5",
"sass": "^1.71.1",
"socket.io-client": "^4.7.4",
"standardized-audio-context": "^25.3.64",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-checker": "^0.6.4"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cookie-signature": "^1.2.1",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"extensionless": "^1.9.6",
"node-turn": "^0.0.6",
"socket.io": "^4.7.4",
"zod": "^3.22.4"
}
}