-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.7 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.7 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
{
"name": "react-ts-vite-pnpm",
"author": {
"name": "Haris Adilovic",
"email": "adilovicharis94@gmail.com",
"url": "https://www.linkedin.com/in/harkkozz/"
},
"engines": {
"node": "24",
"pnpm": ">=9",
"npm": "please-use-pnpm"
},
"type": "module",
"private": true,
"version": "1.1.0",
"scripts": {
"dev": "pnpm run i18next:toc && vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write src",
"lint": "pnpm run lint:tsc && pnpm run lint:eslint && pnpm run lint:ts-coverage",
"lint:eslint": "eslint src --fix --cache",
"lint:ts-coverage": "type-coverage",
"lint:tsc": "tsc",
"lint:staged": "lint-staged",
"ts-coverage:report": "typescript-coverage-report",
"prepare": "husky",
"commitlint": "commitlint --edit",
"i18next:toc": "i18next-resources-for-ts toc -i ./src/i18n/locales -o ./src/i18n/resources.ts & prettier --write ./src/i18n"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.10",
"i18next": "^26.0.0",
"i18next-browser-languagedetector": "^8.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^16.0.0",
"react-router": "^7.0.0",
"react-router-dom": "^7.0.0",
"tailwindcss": "^4.1.10"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/types": "^20.0.0",
"@eslint/compat": "2.0.5",
"@eslint/js": "9.39.4",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^6.0.0",
"commitlint": "^20.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-relative-import-paths": "^1.5.4",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-testing-library": "^7.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"globals": "17.5.0",
"husky": "^9.0.11",
"i18next-resources-for-ts": "^2.0.0",
"lint-staged": "^16.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"type-coverage": "^2.28.1",
"typescript": "5.9.3",
"typescript-coverage-report": "1.1.1",
"typescript-eslint": "^8.0.0",
"vite": "^8.0.0",
"vite-plugin-svgr": "^5.0.0",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "4.1.5"
},
"typeCoverage": {
"atLeast": "100"
}
}