forked from hc-tcg/hc-tcg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (91 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "hc-tcg",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "server/dist/index.ts",
"engines": {
"node": ">=16 <19"
},
"dependencies": {
"@floating-ui/react": "^0.19.1",
"@radix-ui/react-alert-dialog": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-popover": "1.0.5",
"@radix-ui/react-toast": "^1.1.3",
"@react-spring/web": "^9.6.1",
"@react-three/drei": "^9.65.3",
"@react-three/fiber": "^8.12.1",
"@types/node": "^16.18.11",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-transition-group": "^4.4.6",
"@types/three": "^0.150.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@use-gesture/react": "^10.2.27",
"@vitejs/plugin-react": "^3.0.1",
"body-parser": "^1.20.1",
"classnames": "^2.3.2",
"cors": "^2.8.5",
"esbuild": "^0.19.2",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"express": "^4.18.2",
"firebase-admin": "^11.5.0",
"husky": "^8.0.3",
"js-base64": "^3.7.5",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"profanity-filter": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-transition-group": "^4.4.5",
"redux": "^4.2.0",
"redux-saga": "^1.2.2",
"sass": "^1.58.3",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"stylelint": "^15.2.0",
"stylelint-config-standard-scss": "^7.0.1",
"terser": "^5.16.1",
"typed-redux-saga": "^1.5.0",
"typescript": "^5.1.6",
"vite": "^4.0.4",
"vite-plugin-eslint": "^1.8.1"
},
"devDependencies": {
"tsx": "^3.12.7"
},
"scripts": {
"start": "npm run server",
"docker-start": "npm run build && npm run server",
"husky": "husky install",
"clean": "rm -rf client/dist && rm -rf server/dist",
"build": "npm run client:build && npm run server:build",
"server": "node server/dist/index.js",
"server:build": "npm run server:tsc && node esbuild.js",
"server:dev": "tsx watch --tsconfig server/tsconfig.json server/src",
"server:tsc": "tsc --p server/tsconfig.json",
"client:build": "npm run client:tsc && vite build client/",
"client:tsc": "tsc --p client/",
"client:dev": "vite client/",
"client:preview": "vite preview --port 3002 client/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}