-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 KB
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
{
"name": "websockets",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"server": "node server.js",
"format": "npm run pretty && npm run lint",
"clean cache": "npm cache verify",
"build": "tsc && vite build",
"preview": "vite preview",
"pretty": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@tamagui/animations-css": "^1.79.2",
"@tamagui/lucide-icons": "^1.79.2",
"@tamagui/shorthands": "^1.79.2",
"@uidotdev/usehooks": "^2.4.1",
"cors": "^2.8.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"tamagui": "^1.79.2"
},
"devDependencies": {
"@tamagui/vite-plugin": "^1.79.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"prettier": "^3.1.0",
"typescript": "^5.2.2",
"vite": "^5.0.4"
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"printWidth": 115,
"endOfLine": "auto",
"bracketSameLine": true,
"semi": true,
"singleQuote": false,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^react",
"<THIRD_PARTY_MODULES>",
"./*.type",
"./*.config",
"@tamagui/lucide-icons",
"^tamagui",
"^@tamagui/[^/]*",
"./*.styled",
"./*.helper",
"@uidotdev/usehooks",
"./*.use[^/]*",
"^[./]"
],
"importOrderSortSpecifiers": true
}
}