This repository was archived by the owner on Jun 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.76 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
{
"name": "smash-grade-app",
"private": true,
"version": "0.0.1",
"type": "module",
"engines": {
"node": "^18.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:pr": "tsc && vite build --mode pullrequest",
"build:local": "tsc && vite build --mode development",
"lint": "eslint --ext ts,tsx,css --report-unused-disable-directives --max-warnings 0 src",
"lint-report": "eslint --ext ts,tsx,css --format json-relative --output-file reports/eslint.json src",
"format": "prettier --write \"*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"check-typescript": "tsc --noEmit",
"preview": "concurrently \"npm:json-db\" \"vite preview\"",
"prepare": "husky install",
"json-db": "cd api && npm run start:dev",
"dev-db": "concurrently \"npm:json-db\" \"npm:dev\"",
"start": "json-server api/db.json --static ./dist",
"extract-de": "formatjs extract \"src/**/*.{ts,tsx}\" --ignore=\"**/*.d.ts\" --id-interpolation-pattern \"[sha512: contenthash:base64:6]\" --out-file \"src/i18n/lang/de.json\"",
"extract-en": "formatjs extract \"src/**/*.{ts,tsx}\" --ignore=\"**/*.d.ts\" --id-interpolation-pattern \"[sha512: contenthash:base64:6]\" --out-file \"src/i18n/lang/en.json\"",
"extract-fr": "formatjs extract \"src/**/*.{ts,tsx}\" --ignore=\"**/*.d.ts\" --id-interpolation-pattern \"[sha512: contenthash:base64:6]\" --out-file \"src/i18n/lang/fr.json\"",
"compile-de": "formatjs compile \"src/i18n/lang/de.json\" --out-file \"src/i18n/compiled-lang/de.json\"",
"compile-en": "formatjs compile \"src/i18n/lang/en.json\" --out-file \"src/i18n/compiled-lang/en.json\"",
"compile-fr": "formatjs compile \"src/i18n/lang/fr.json\" --out-file \"src/i18n/compiled-lang/fr.json\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"npm run format"
],
"**/!(api)!(*routeTree.gen).ts/*.{ts,tsx,css}": [
"npm run lint"
]
},
"dependencies": {
"@ant-design/icons": "^5.3.1",
"@azure/msal-browser": "^3.6.0",
"@azure/msal-react": "^2.0.8",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-query-devtools": "^5.0.3",
"@tanstack/react-router": "^1.15.23",
"@tanstack/router-devtools": "^1.15.23",
"ag-grid-community": "^30.2.0",
"ag-grid-react": "^30.2.0",
"antd": "^5.9.1",
"axios": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@formatjs/cli": "^6.2.0",
"@formatjs/ts-transformer": "^3.13.5",
"@react-buddy/ide-toolbox": "^2.4.0",
"@react-buddy/palette-antd": "^5.3.0",
"@tanstack/eslint-plugin-query": "^5.20.1",
"@tanstack/router-vite-plugin": "^1.15.22",
"@types/cors": "^2.8.17",
"@types/json-server": "^0.14.6",
"@types/node": "^20.8.6",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"concurrently": "^8.2.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-formatter-json-relative": "^0.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.3",
"json-server": "^0.17.3",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.67.0",
"typescript": "^5.0.2",
"vite": "^4.5.1"
}
}