-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "react-next-boilerplate-repo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev & nodemon server.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pre-commit": "npx lint-staged -c, --config lintstagedrc.json",
"pre-push": "npm run build",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@headlessui/react": "^2.1.8",
"@heroicons/react": "^2.1.5",
"react-zoom-pan-pinch": "^3.4.4",
"axios": "^1.7.7",
"cors": "^2.8.5",
"express": "^4.21.0",
"flowbite-react": "^0.10.1",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/cz-commitlint": "^17.4.4",
"@reduxjs/toolkit": "^1.9.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"react-zoom-pan-pinch": "^3.4.4",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.7",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react-redux": "^8.1.2",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.3",
"tailwindcss": "^3.4.13",
"typed-redux-saga": "^1.5.0",
"typesafe-actions": "^5.1.0",
"typescript": "^5.5.0"
}
}