-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"type": "module",
"name": "@gunsurvival/client",
"version": "1.0.0",
"description": "Client for gunsurvival",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier --write .",
"lint:eslint": "eslint --fix ."
},
"keywords": [],
"author": "khoakomlem",
"license": "MIT",
"dependencies": {
"@gunsurvival/core": "^1.0.0",
"@gunsurvival/server": "^1.0.0",
"@pixi/layers": "^2.0.1",
"@reduxjs/toolkit": "^1.9.3",
"autoprefixer": "^10.4.13",
"detect-collisions": "^6.6.11",
"nipplejs": "^0.10.1",
"pixi-filters": "^5.2.0",
"pixi-viewport": "^4.38.0",
"pixi.js": "^7.1.0",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"stats.js": "^0.17.0",
"tailwindcss": "^3.2.7",
"zzfx": "^1.1.8"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/stats.js": "^0.17.0",
"@typescript-eslint/eslint-plugin": ">=5.43.0",
"@typescript-eslint/parser": ">=5.43.0",
"@vitejs/plugin-react": "^3.0.0",
"eslint": ">=8.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.55.1",
"eslint-plugin-react": "^7.32.0",
"prettier": "^2.8.8",
"typescript": ">=4.4",
"vite": "^4.0.0"
}
}