This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 315
/
Copy pathpackage.json
81 lines (81 loc) · 2.26 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
{
"name": "website",
"version": "1.0.0",
"license": "GPL-3.0",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/holy-unblocker/website.git"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/catamaran": "^5.0.11",
"@fontsource/lato": "^5.0.11",
"@fontsource/montserrat-alternates": "^5.0.8",
"@mui/icons-material": "^5.14.8",
"@swc/helpers": "^0.5.1",
"@tomphttp/bare-client": "^2.2.0-alpha",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"clsx": "^2.0.0",
"crypto-js": "^4.1.1",
"i18next": "^23.4.9",
"i18next-browser-languagedetector": "^7.1.0",
"js-cookie": "^3.0.5",
"random-seed": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-i18next": "^13.2.2",
"react-router-dom": "^6.15.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@ruffle-rs/ruffle": "^0.1.0-nightly.2023.9.6",
"@titaniumnetwork-dev/ultraviolet": "^2.0.0",
"@tomphttp/bare-server-node": "^2.0.1",
"@types/crypto-js": "^4.1.2",
"@types/dotenv-flow": "^3.3.1",
"@types/js-cookie": "^3.0.3",
"@types/random-seed": "^0.3.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"dotenv-expand": "^10.0.0",
"dotenv-flow": "^3.3.0",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-minify": "^1.5.2",
"vite-plugin-static-copy": "^0.17.0",
"vite-plugin-svgr": "^3.2.0"
},
"scripts": {
"buildConfig": "node buildConfig.js",
"dev": "npm run buildConfig && vite",
"build": "npm run buildConfig -- --prod && tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}