-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.6 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "tanstack-router-query-template",
"version": "1.0.0",
"description": "A TypeScript React template using @tanstack/react-router & @tanstack-react-query",
"keywords": [
"react",
"react-template",
"tanstack-router-query-template",
"typescript-react-template",
"template",
"react-query-template",
"tanstack-router-template",
"tanstack-react-router-template",
"tanstack-react-query-template",
"react-typescript-template",
"husky",
"commitlint",
"cz-git",
"i18",
"react-template-i18n"
],
"repository": {
"type": "git",
"url": "https://github.com/ashwin1014/react-tanstack-router-query-template"
},
"license": "MIT",
"author": "Ashwin Bordoloi <ashwin1014@live.com> (https://github.com/ashwin1014)",
"type": "module",
"scripts": {
"build": "NODE_ENV=production tsc && vite build",
"build:staging": "NODE_ENV=production tsc && vite build --mode staging",
"commit": "git cz",
"dev": "NODE_ENV=development vite",
"dev:prod": "NODE_ENV=development vite --mode production",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen:scss-types": "typed-scss-modules src --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.json --report-unused-disable-directives --max-warnings 0",
"prepare": "husky",
"preview": "vite preview"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"package.json": "npx sort-package-json"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"@tanstack/query-sync-storage-persister": "5.28.4",
"@tanstack/react-query": "5.28.4",
"@tanstack/react-query-persist-client": "5.28.4",
"@tanstack/react-router": "1.20.1",
"axios": "1.6.8",
"i18next": "23.10.1",
"immer": "10.0.4",
"radash": "12.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet-async": "2.0.4",
"react-i18next": "14.1.0",
"sass": "1.72.0",
"zod": "3.22.4"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@commitlint/is-ignored": "19.0.3",
"@tanstack/eslint-plugin-query": "5.27.7",
"@tanstack/react-query-devtools": "5.28.4",
"@tanstack/router-devtools": "1.20.1",
"@tanstack/router-vite-plugin": "1.20.2",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "4.2.1",
"commitizen": "4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "1.9.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsonc": "2.13.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-jsx-control-statements": "^3.0.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.6",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"husky": "9.0.11",
"lint-staged": "^15.2.2",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"react-geiger": "1.1.0",
"rimraf": "5.0.5",
"typed-scss-modules": "^8.0.0",
"typescript": "5.4.2",
"vite": "5.1.6"
}
}