-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.09 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
70
71
72
73
{
"name": "extensions",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.11.0",
"scripts": {
"dev": "VITE_SOCKET_SERVER_URL=http://localhost:3000 vite build --watch",
"build": "tsc -b && vite build",
"build:web": "vite build --config vite.config.web.ts",
"dev:web": "vite",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint",
"prettier --check"
]
},
"dependencies": {
"@tailwindcss/vite": "^4.1.7",
"@tanstack/react-query": "^4.36.1",
"axios": "^1.9.0",
"jotai": "^2.12.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.7"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.25.0",
"@playwright/test": "^1.54.2",
"@tanstack/eslint-plugin-query": "^5.74.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.0.323",
"@types/node": "^22.15.21",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/ui": "3.2.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-unicorn": "^59.0.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vitest": "^3.2.1"
}
}