-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.48 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
71
72
73
74
75
76
77
78
{
"name": "flapping-online-remastered",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"description": "Multiplayer flapping bird game",
"author": "Đậu Khoa <[email protected]>",
"repository": "https://github.com/khoakomlem/flapping-online-remastered",
"main": "index.js",
"scripts": {
"client-dev": "next dev --port 5173",
"client-build": "next build",
"client-start": "next start",
"watch-server": "nodemon --exec \"esno --tsconfig=tsconfig.json ./src/server\" --watch src -e ts",
"run-ts": "cross-env SWCRC=true node --enable-source-maps --import @swc-node/register/esm-register",
"format": "eslint --fix .",
"check": "tsc --project ./tsconfig.json --noEmit"
},
"dependencies": {
"@colyseus/monitor": "^0.15.5",
"@colyseus/tools": "^0.15.35",
"@pixi/gif": "2.1.1",
"@pixi/sound": "^5.2.3",
"@types/howler": "^2.2.11",
"colyseus": "^0.15.15",
"colyseus.js": "^0.15.18",
"cors": "^2.8.5",
"detect-collisions": "^9.2.3",
"howler": "^2.2.4",
"lodash": "^4.17.21",
"next": "^14.1.0",
"next-intl": "^3.4.5",
"p-retry": "^6.2.0",
"pixi-viewport": "^5.0.2",
"pixi.js": "7.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stats.js": "^0.17.0",
"uniqid": "^5.4.0",
"usehooks-ts": "^2.9.5",
"zustand": "^4.5.0",
"zzfx": "^1.2.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/stats.js": "^0.17.3",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^2.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^3.0.3",
"postcss": "^8.4.33",
"postcss-nesting": "^12.0.2",
"prettier": "^3.2.4",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}