-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "next-codebase",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:check": "eslint . --ext ts --ext tsx --ext js",
"lint:fix": "eslint . --ext .ts,.tsx,.js --fix && stylelint '**/*.css' --fix",
"prettier": "prettier --check \"(*.tsx|*.ts|*.css|*.scss)\"",
"prettier:fix": "prettier --write \"(*.tsx|*.ts|*.css|*.scss)\"",
"prepare": "husky install"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@next/font": "13.1.1",
"@reduxjs/toolkit": "^1.9.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"axios": "^1.2.2",
"classnames": "^2.3.2",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.5.0",
"i18next": "^22.4.7",
"lodash": "^4.17.21",
"next": "13.1.1",
"next-i18next": "^13.0.2",
"next-redux-wrapper": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.41.5",
"react-i18next": "^12.1.1",
"react-infinite-scroll-hook": "^4.1.1",
"react-redux": "^8.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.2",
"sass": "^1.57.1",
"socket.io-client": "^4.5.4",
"typescript": "4.9.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@commitlint/config-conventional": "^17.3.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"commitlint": "^17.3.0",
"eslint": "8.30.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1"
}
}