-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.17 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
{
"name": "cricketapp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "vite",
"build": "vite build",
"prepare": "husky",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix",
"stylelint": "stylelint \"src/**/*.css\"",
"stylelint:fix": "stylelint \"src/**/*.css\" --fix",
"lint:all": "npm run lint && npm run stylelint",
"format": "prettier --write \"src/**/*.{js,jsx,css,html,json}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,css,html,json}\"",
"preview": "vite preview"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix"
],
"src/**/*.css": [
"stylelint --fix"
],
"src/**/*.{js,jsx,css,html,json}": [
"prettier --write"
]
},
"dependencies": {
"@tanstack/query-async-storage-persister": "^5.95.2",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-query-persist-client": "^5.95.2",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"http-proxy-middleware": "^3.0.5",
"i18next": "^25.10.2",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.2",
"idb-keyval": "^6.2.2",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.6.0",
"react-router-dom": "^7.13.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"stylelint": "^17.5.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-prettier": "^5.0.3",
"terser": "^5.48.0",
"vite": "^8.0.1"
}
}