-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.68 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
86
87
{
"name": "nextjs-base-core",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 9999",
"build": "next build --no-lint",
"start": "next start",
"check": "run-p check:*",
"check:lint": "next lint --dir 'src'",
"check:format": "prettier --check --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css,scss,sass}'",
"fix": "run-p fix:*",
"fix:lint": "next lint --dir 'src' --fix",
"fix:format": "prettier --check --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css,scss,sass}'",
"i18n:scan": "i18next-scanner",
"generate:icons": "node scripts/generate-icons.cjs",
"generate:api": "orval"
},
"pre-commit": [
"check:lint",
"check:format"
],
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@faker-js/faker": "^9.2.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@reduxjs/toolkit": "^1.9.3",
"@svgr/core": "^8.1.0",
"@tanstack/react-query": "^5.61.3",
"antd": "^5.4.2",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.5.1",
"faker": "^6.6.6",
"framer-motion": "^10.12.3",
"i18next": "^22.4.15",
"lucide-react": "^0.460.0",
"msw": "^2.6.6",
"next": "13.3.0",
"next-auth": "^4.22.1",
"next-i18next": "^13.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.2.2",
"react-redux": "^8.0.5",
"react-scroll": "^1.8.9",
"styled-components": "^5.3.9",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@svgr/cli": "^8.1.0",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"@types/react-scroll": "^1.8.6",
"@types/react-slick": "^0.23.10",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "10.4.14",
"eslint": "8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"i18next-scanner": "^4.2.0",
"npm-run-all": "^4.1.5",
"orval": "^7.3.0",
"postcss": "8.4.21",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"sass": "^1.62.0",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
}
}