-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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
{
"name": "laravelcm.nextjs-boilerplate",
"version": "1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test:cy": "cypress open --config-file cypress.config.js"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@tanstack/react-query": "^5.37.1",
"axios": "^1.6.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint-config-next": "14.0.4",
"lucide-react": "^0.378.0",
"next": "14.2.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "^9.0.4",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.6.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.14",
"@tailwindcss/forms": "^0.5.6",
"@tanstack/eslint-plugin-query": "^5.12.1",
"@tanstack/react-query-devtools": "^5.24.8",
"@types/node": "20.12.5",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.1",
"@types/react-redux": "^7.1.33",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.0",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,json,ts,tsx}": "prettier --write"
}
}