-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 870 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 870 Bytes
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
{
"name": "launchcontrol",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build:frontend": "tsc && vite build",
"preview": "vite preview",
"format": "prettier . --write",
"lint": "eslint .",
"build:backend": "node buildserver.mjs",
"server": "node server.js"
},
"devDependencies": {
"@types/events": "^3.0.3",
"@types/express": "^4.17.21",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "0.20.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typed-emitter": "^2.1.0",
"typescript": "^5.2.2",
"vite": "^5.1.5",
"vite-plugin-node-polyfills": "^0.21.0"
},
"dependencies": {
"express": "^4.18.3",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4"
}
}