-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "snake",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run src/server",
"test": "vitest",
"format": "prettier --write src",
"format:check": "prettier --check src",
"lint": "eslint src",
"build:server": "bun build src/server/index.ts --target node",
"build:client": "bun build src/client/index.ts --outdir static",
"build": "bun run build:server; bun run build:client",
"ci:build": "bun run build",
"ci:test": "TEST_ENV=CI bun run test",
"ci:format": "bun run format:check",
"ci:lint": "bun run lint"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/bun": "latest",
"eslint": "^9.21.0",
"prettier": "^3.5.2",
"typescript-eslint": "^8.25.0",
"vitest": "^3.0.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@fastify/cors": "^10.1.0",
"@fastify/helmet": "^13.0.1",
"@fastify/static": "^8.1.1",
"color-string": "^2.0.1",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"fastify-socket.io": "^5.1.0",
"jose": "^6.0.6",
"mitt": "^3.0.1",
"socket.io-client": "^4.8.1"
}
}