-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 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
{
"name": "taskward-v1-website",
"type": "module",
"scripts": {
"dev": "vite",
"prod": "vite --mode production",
"build": "vite build",
"preview": "vite preview",
"release": "sh scripts/deploy.sh",
"cspell:check": "cspell **",
"eslint:check": "eslint .",
"eslint:fix": "eslint --fix .",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"generate:env": "bun scripts/generateEnv.ts",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@reduxjs/toolkit": "^1.8.3",
"@tanstack/react-query": "^4.2.3",
"axios": "^0.27.2",
"clsx": "^2.1.0",
"daisyui": "^2.31.0",
"dayjs": "^1.11.10",
"i18next": "^23.10.1",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.2",
"react-i18next": "^11.18.3",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"uuid": "^9.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@bit-ocean/prettier-config": "^0.0.10",
"@hookform/devtools": "^4.3.1",
"@tanstack/react-query-devtools": "^4.2.3",
"@types/node": "^20.11.28",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.18",
"bun": "^1.0.31",
"cspell": "^8.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.3",
"vite": "^3.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"private": true,
"license": "MIT"
}