-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 830 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 830 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
{
"name": "dvd-screen-multiplayer",
"version": "1.0.0",
"description": "",
"license": "MIT",
"author": "",
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev": "tsx watch --env-file .env src/index.ts",
"build": "tsc",
"start": "node --env-file-if-exists=.env dist/index.js",
"pretty": "prettier --write \"src/**/*.ts\" && prettier --write \"public/js/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@fastify/static": "^8.2.0",
"@fastify/view": "^11.1.1",
"@fastify/websocket": "^11.2.0",
"ejs": "^3.1.10",
"fastify": "^5.6.0"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^24.5.2",
"@types/ws": "^8.18.1",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}