-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.4 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "dodo-app-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "husky",
"install:clean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && pnpm install",
"dev": "vite",
"build": "pnpm run typecheck && vite build",
"test": "vitest related --passWithNoTests --run",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"lint": "eslint --quiet src --ext .ts,.tsx && stylelint src/**/*.less",
"lint:fix": "eslint --quiet --fix src --ext .ts,.tsx && stylelint --fix src/**/*.less",
"i18next-resources-for-ts": "i18next-resources-for-ts toc -i ./src/i18n/locales/en -o ./src/types/resources.ts",
"translate": "transmart"
},
"dependencies": {
"@loadable/component": "^5.15.3",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-slot": "^1.1.1",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-router": "^1.97.23",
"@transmart/cli": "^0.2.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-resources-to-backend": "^1.1.4",
"lucide-react": "^0.453.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^13.2.2",
"supertokens-auth-react": "^0.48.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@faker-js/faker": "^9.3.0",
"@rollup/rollup-darwin-x64": "4.28.0",
"@tanstack/eslint-plugin-query": "^5.66.0",
"@tanstack/eslint-plugin-router": "^1.97.19",
"@tanstack/react-query-devtools": "^4.36.1",
"@tanstack/router-devtools": "^1.97.23",
"@tanstack/router-plugin": "^1.97.23",
"@types/loadable__component": "^5.13.4",
"@types/node": "^18.15.11",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^2.0.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"i18next-resources-for-ts": "1.3.2",
"less": "^4.1.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.47",
"postcss-less": "^6.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"react@^19.0.0": "link:types/react@^19.0.0",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^32.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.21.0",
"vite": "^4.2.0",
"vite-plugin-external": "^1.2.8",
"vite-plugin-svgr": "^2.4.0",
"vitest": "^2.1.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add ."
],
"*.{css}": [
"stylelint --fix",
"prettier --write",
"git add ."
]
}
}