-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.82 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "naikila_fe_main",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "cross-env vite",
"build": "cross-env tsc && vite build",
"preview": "cross-env vite preview",
"prepare": "husky",
"lint": "npm run prettier:fix && npm run eslint:check && npm run check-types",
"lint-staged": "lint-staged",
"prettier:check": "prettier --check . --cache",
"prettier:fix": "prettier --write . --cache",
"eslint:fix": "eslint --fix ./src --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"eslint:check": "eslint ./src --ext .ts,.tsx,.js,.jsx --report-unused-disable-directives --max-warnings 0",
"eslint:debug": "eslint ./src --debug --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"eslint:check-allow-warning": "eslint --quiet ./src --ext .ts,.tsx,.js,.jsx",
"check-conflict-prettier-eslint": "npx eslint-config-prettier src/App.tsx --print-config",
"check-types": "tsc --noemit"
},
"lint-staged": {
"*.*": [
"npm run prettier:fix"
]
},
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@nextui-org/react": "^2.4.2",
"@tanstack/react-query": "^5.49.0",
"axios": "^1.7.2",
"cross-env": "^7.0.3",
"framer-motion": "^11.2.12",
"jwt-decode": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.0",
"react-icons": "^5.2.1",
"react-otp-input": "^3.1.1",
"react-router-dom": "^6.24.0",
"react-toastify": "^10.0.5",
"typescript": "5.5.2",
"yup": "^1.4.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "8.57.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@tsconfig/vite-react": "^3.0.2",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.19",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"postcss-load-config": "^6.0.1",
"postcss-plugin": "^1.0.0",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"sass": "^1.77.6",
"tailwindcss": "^3.4.4",
"vite": "^5.3.1"
},
"engines": {
"node": ">=20.0.0"
}
}