-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "frontend-react-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"mock-server": "npx ts-node ./src/mocks/index.ts",
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"lint": "next lint",
"check-format": "prettier --check .",
"format": "prettier --write .",
"lf": "npm run lint && npm run format",
"test": "TZ=UTC jest --passWithNoTests",
"test-all": "npm run check-format && npm run check-lint && npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@hookform/resolvers": "^3.3.2",
"@svgr/webpack": "^8.1.0",
"@types/humps": "^2.0.6",
"accept-language": "^3.0.18",
"antd": "^5.12.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"http-status-codes": "^2.3.0",
"humps": "^2.0.1",
"i18next": "^23.7.8",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-resources-to-backend": "^1.2.0",
"install": "^0.13.0",
"iron-session": "^8.0.1",
"lodash": "^4.17.21",
"msw": "^2.3.1",
"next": "^14.2.3",
"next-i18n-router": "^5.0.2",
"next-runtime-env": "^3.2.0",
"npm": "^10.2.5",
"react": "^18.3.1",
"react-aria": "^3.30.0",
"react-cookie": "^6.1.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.49.0",
"react-i18next": "^13.5.0",
"react-number-format": "^5.4.1",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7",
"yup": "^1.3.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@headlessui/react": "^1.7.17",
"@storybook/addon-essentials": "^8.4.3",
"@storybook/addon-interactions": "^8.4.3",
"@storybook/addon-onboarding": "^8.4.3",
"@storybook/blocks": "^8.4.3",
"@storybook/nextjs": "^8.4.3",
"@storybook/react": "^8.4.3",
"@storybook/test": "^8.4.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"autoprefixer": "^10.0.1",
"eslint": "^8.55.0",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.11.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"jest": "^29.7.0",
"jest-date-mock": "^1.0.8",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-sonar": "^0.2.16",
"next-router-mock": "^0.9.11",
"postcss": "^8",
"prettier": "^3.1.0",
"prettier-plugin-sort-json": "^3.1.0",
"sass": "^1.69.5",
"storybook": "^8.4.3",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}