dcrey7 commited on
Commit
4a8ab7d
·
verified ·
1 Parent(s): f259196

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +22 -0
package.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "gameserv",
3
+ "module": "src/index.ts",
4
+ "type": "module",
5
+ "scripts": {
6
+ "start": "bun run src/index.ts",
7
+ "dev": "bun run src/index.ts"
8
+ },
9
+ "devDependencies": {
10
+ "@types/bun": "latest",
11
+ "@types/socket.io-client": "^3.0.0",
12
+ "typescript": "^5.0.0"
13
+ },
14
+ "dependencies": {
15
+ "@prisma/client": "^6.2.1",
16
+ "fastify": "^5.2.1",
17
+ "fastify-socket.io": "^5.1.0",
18
+ "prisma": "^6.2.1",
19
+ "socket.io": "^4.8.1",
20
+ "socket.io-client": "^4.8.1"
21
+ }
22
+ }