-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.34 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "resume",
"scripts": {
"rebuild": "rimraf dist && npm run bundle",
"bundle": "tsc -p src/. && tsc-alias",
"build": "tsc && tsc-alias",
"watch": "tsx watch src/server.ts",
"dev": "tsx src/server.ts",
"start": "npm run build -- -w",
"translate": "cd src/scripts && node i18n-scanner.js",
"translate:verify": "cd src/scripts && node i18n-verify.js",
"client:dev": "vite",
"client:build": "vite build",
"client:watch": "concurrently \"vite\" \"vite build --watch\"",
"client:preview": "vite preview",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "husky",
"check:circular": "madge --circular --ts-config tsconfig.json --extensions ts src/",
"check:client": "tsc --noEmit -p src/client/tsconfig.json"
},
"dependencies": {
"@testing-library/dom": "^10.4.1",
"asn1": "^0.2.6",
"axios": "^1.18.1",
"bcrypt-pbkdf": "^1.0.2",
"bcryptjs": "^3.0.3",
"bson": "^7.3.1",
"bull": "^4.16.5",
"chalk": "^4.1.2",
"chart.js": "^4.5.1",
"discord.js": "^14.27.0",
"dompurify": "^3.4.12",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"firebase": "^10.14.1",
"firebase-admin": "^14.0.0",
"firebaseui": "^6.1.0",
"fuzzy-matching": "^0.4.3",
"i18next": "^26.3.6",
"i18next-fs-backend": "^2.6.6",
"jwt-simple": "^0.5.6",
"lodash": "^4.18.1",
"module-alias": "^2.3.4",
"moment": "^2.30.1",
"mongoose": "^8.9.4",
"mongoose-lean-virtuals": "^2.1.0",
"morgan": "^1.11.0",
"mtprotoproxy": "^2.0.0",
"node-schedule": "^2.1.1",
"nodemailer": "^9.0.3",
"react": "^19.2.8",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.8",
"react-helmet-async": "^3.0.0",
"react-router-dom": "^7.18.1",
"redis": "^6.1.0",
"rimraf": "^6.1.3",
"styled-components": "^6.4.4",
"tunnel-ssh": "^5.2.0",
"ws": "^8.21.1",
"xml2js": "^0.6.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": "prettier --write"
},
"devDependencies": {
"@swc/core": "^1.15.46",
"@swc/helpers": "^0.5.23",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcrypt": "^6.0.0",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jwt-simple": "^0.5.36",
"@types/lodash": "^4.17.24",
"@types/moment": "^2.13.0",
"@types/mongoose-lean-virtuals": "^0.5.6",
"@types/node": "^22.20.0",
"@types/node-schedule": "^2.1.8",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/styled-components": "^5.1.36",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.4",
"copyfiles": "^2.4.1",
"husky": "^9.1.7",
"i18n-auto-translation": "^2.2.3",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"lint-staged": "^17.2.0",
"madge": "^8.0.0",
"nodemon": "^3.1.14",
"npm": "^11.17.0",
"npm-check-updates": "^22.2.9",
"prettier": "^3.9.6",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"tsc-alias": "^1.9.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"vite": "^8.1.5"
},
"overrides": {
"madge": {
"typescript": "$typescript"
}
}
}