-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.4 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.4 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
80
81
82
83
{
"name": "axobot-web",
"version": "1.1.0",
"type": "module",
"private": true,
"scripts": {
"start": "NODE_ENV=production node server",
"dev": "react-router dev",
"build": "react-router build && node compute-hashes.js",
"build-checks": "npx typia generate --input src/repository/types/checks/templates --output src/repository/types/checks/generated --project tsconfig.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@fontsource/roboto": "^5.1.0",
"@microsoft/eslint-formatter-sarif": "^2.1.7",
"@mui/icons-material": "^7.3.4",
"@mui/material": "^7.3.4",
"@react-router/node": "^7.12.0",
"@reduxjs/toolkit": "^2.2.3",
"compression": "^1.8.1",
"cors": "^2.8.5",
"discord-api-types": "^0.37.92",
"express": "^4.22.1",
"express-rate-limit": "^8.2.2",
"helmet": "^8.1.0",
"isbot": "^5",
"markdown-it": "^14.1.1",
"morgan": "^1.10.1",
"mui-color-input": "^7.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-infinite-scroll-hook": "^6.0.1",
"react-number-format": "^5.4.0",
"react-redux": "9.2",
"react-router": "^7.12.0",
"sirv": "^3.0.2",
"typescript": "^5.9.3",
"typia": "^9.7.2",
"vite": "^7.3.2",
"vite-plugin-svgr": "4.5",
"vite-tsconfig-paths": "^5.1.4",
"web-vitals": "^2.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"nth-check": "2.0.1",
"semver": "7.5.2"
},
"devDependencies": {
"@react-router/dev": "^7.12.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.4",
"@types/jest": "^27.5.2",
"@types/markdown-it": "^14.1.2",
"@types/morgan": "^1.9.10",
"@types/node": "^20.11.25",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "8.51",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"node-html-parser": "^7.0.1",
"typescript-eslint": "^8.51.0"
}
}