-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "react-example",
"private": true,
"scripts": {
"build": "tsc && vite build",
"clean": "rm --recursive --force build/",
"dev": "vite",
"locales": "lingui extract --clean --overwrite",
"run": "caddy file-server --root build/ --listen \"${REACT_EXAMPLE__SERVER__HOST:-0.0.0.0}:${REACT_EXAMPLE__SERVER__PORT:-5173}\" --access-log",
"test": "tsc && vite build --outDir .tmp/",
"posttest": "rm --recursive --force .tmp/",
"update": "ncu --peer --doctor --upgrade && npm i --no-audit --no-fund",
"postupdate": "rm --recursive --force .tmp/"
},
"dependencies": {
"@lingui/macro": "^4.14.0",
"@lingui/react": "^4.14.0",
"@mantine/core": "^7.13.5",
"@mantine/hooks": "^7.13.5",
"@mantine/notifications": "^7.13.5",
"@tabler/icons-react": "~3.17.0",
"immer": "^10.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"zustand": "^5.0.1"
},
"devDependencies": {
"@lingui/cli": "^4.14.0",
"@lingui/format-po": "^4.14.0",
"@lingui/vite-plugin": "^4.14.0",
"@types/node": "20.11.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-react": "^4.3.3",
"babel-plugin-macros": "^3.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lingui": "^0.7.0",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-react": "^7.37.2",
"npm-check-updates": "^17.1.10",
"postcss": "^8.4.47",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}