-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.22 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
{
"name": "triage",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext js,jsx,ts,tsx .",
"fmt": "eslint --ext js,jsx,ts,tsx --fix .",
"deploy": "wrangler pages deploy dist",
"i18n": "npx i18next-parser 'src/**/*.{ts,tsx}' -c ./i18next-parser.config.js"
},
"dependencies": {
"@fontsource/inter": "^5.0.8",
"@material-symbols/font-400": "^0.10.3",
"@reduxjs/toolkit": "^1.9.5",
"i18next": "^23.12.2",
"preact": "^10.16.0",
"react-i18next": "^15.0.1",
"react-redux": "^8.1.2"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.46.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"i18next-parser": "^9.0.2",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vite": "^4.4.5"
}
}