This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
109 lines (109 loc) · 4 KB
/
package.json
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
{
"name": "dauntless-builder",
"version": "2.0.0",
"type": "module",
"repository": "[email protected]:atomicptr/dauntless-builder",
"author": "Christopher Kaster <[email protected]>",
"license": "AGPLv3",
"private": true,
"scripts": {
"build": "npm run build:deps && npm run build:frontend",
"build:deps": "tsx --tsconfig ./builder/tsconfig.json ./builder/src/main.ts",
"build:data": "npm run build:deps -- --run data i18n build-finder-intermediate-data",
"build:frontend": "vite build",
"dev": "vite dev",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"bench": "npm run benchmark",
"benchmark": "npm run test -- --projects jest-benchmark.config.ts",
"deploy": "npm run build && ./scripts/deploy.sh",
"lint": "concurrently 'npm:lint:*(!fix)'",
"lint:tsc": "tsc",
"lint:code": "eslint .",
"lint:json": "scripts/json-linter -r src tsconfig.json .eslintrc",
"lint:fix": "concurrently npm:lint:fix:*",
"lint:fix:json": "npm run lint:json -- --fix",
"lint:fix:code": "prettier . --write && eslint . --fix"
},
"engines": {
"node": ">=18.0.0",
"yarn": "please-use-npm"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@tanstack/react-query": "^5.53.1",
"hashids": "^2.3.0",
"i18next": "^23",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-resources-to-backend": "^1.2.1",
"jotai": "^2.9.3",
"just-kebab-case": "^4.2.0",
"md5": "^2.3.0",
"notistack": "^3.0.1",
"react": "^18.3.1",
"react-country-flag": "^3.1.0",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-helmet": "^6.1.0",
"react-i18next": "^14.1.1",
"react-icons": "^5.3.0",
"react-lazy-load-image-component": "^1.6.2",
"react-router-dom": "^6.26.1",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
"sqids": "^0.3.0",
"stylis": "^4.3.4",
"stylis-plugin-rtl": "^2.1.1",
"ts-pattern": "^5.3.1"
},
"devDependencies": {
"@crowdin/crowdin-api-client": "^1.35.0",
"@types/command-line-args": "^5.2.3",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/md5": "^2.3.5",
"@types/node": "^20.12.7",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/react-lazy-load-image-component": "^1.6.4",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
"@types/sort-json": "^2.0.3",
"@types/stylis": "^4.2.6",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react": "^4.3.1",
"ajv": "^8.17.1",
"axios": "^1.7.6",
"command-line-args": "^5.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-i18next": "^6.0.9",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^3.1.0",
"glob": "^10.3.12",
"jest": "^29",
"jest-bench": "^29",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"license-checker": "^25.0.1",
"prettier": "^3.3.3",
"queue-promise": "^2.2.1",
"sort-json": "^2.0.1",
"ts-jest": "^29",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-favicon": "^1.0.8",
"vite-plugin-pwa": "^0.20.2",
"yauzl": "^3.1.3"
}
}