forked from nofuture2077/HeheChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.6 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
74
75
76
77
78
79
{
"name": "hehe-chat",
"private": true,
"version": "0.17.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint . --ext .ts,.tsx --cache",
"lint:stylelint": "stylelint '**/*.css' --cache",
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"vitest": "vitest run",
"vitest:watch": "vitest",
"test": "npm run typecheck && npm run prettier && npm run lint && npm run vitest && npm run build"
},
"dependencies": {
"@hello-pangea/dnd": "^16.6.0",
"@mantine/charts": "^8.1.3",
"@mantine/core": "8.1.3",
"@mantine/dates": "^8.1.3",
"@mantine/hooks": "8.1.3",
"@mantine/notifications": "^8.1.3",
"@tabler/icons-react": "^3.10.0",
"@twurple/api": "^7.1.0",
"@uidotdev/usehooks": "^2.4.1",
"dayjs": "^1.11.13",
"humanize-duration": "^3.32.1",
"pg-format": "^1.0.4",
"pubsub-js": "^1.9.4",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"react-twitch-embed-video": "^3.1.0",
"recharts": "^2.15.3",
"underscore": "^1.13.7"
},
"devDependencies": {
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/humanize-duration": "^3.27.4",
"@types/pubsub-js": "^1.8.6",
"@types/react": "^18.3.3",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.0",
"@types/underscore": "^1.11.15",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-mantine": "3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^24.1.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "1.15.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.2",
"prop-types": "^15.8.1",
"stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5.5.2",
"vite": "^6.3.5",
"vite-plugin-mkcert": "^1.17.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.2.2"
},
"packageManager": "yarn@4.3.1"
}