-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
{
"name": "security",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run lint && dotenv -e .env next dev",
"build": "npm run lint && next build",
"build-stats": "ANALYZE=true npm run build",
"start": "PORT=$PORT next start",
"lint": "npm run eslint && next lint",
"eslint": "eslint --fix .",
"check-types": "tsc --project tsconfig.json --pretty --noEmit",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:serve": "http-server storybook-static --port 6006 --silent",
"serve-storybook": "run-s storybook:*",
"test-storybook:ci": "start-server-and-test serve-storybook http://localhost:6006 test-storybook",
"test": "jest --watch --coverage",
"test:ci": "jest --ci"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@ant-design/icons": "^5.2.6",
"@types/node": "20.6.3",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"@types/react-slick": "^0.23.13",
"antd": "^5.9.2",
"autoprefixer": "10.4.16",
"clsx": "^2.0.0",
"cookies-next": "^4.0.0",
"dayjs": "^1.11.10",
"dotenv-cli": "^7.3.0",
"lodash": "^4.17.21",
"next": "14.0.4",
"next-themes": "^0.2.1",
"postcss": "8.4.30",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.3",
"react-icons": "^4.11.0",
"react-slick": "^0.29.0",
"react-slideshow-image": "^4.3.0",
"sharp": "^0.33.1",
"slick-carousel": "^1.8.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"uuid4": "^2.0.3",
"yup": "^1.3.3",
"zod": "^3.22.4",
"zustand": "^4.4.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.5.4",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/lodash": "^4.14.202",
"@types/node": "20.6.3",
"@types/uuid4": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"eslint": "8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "13.5.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^2.8.8",
"sass": "^1.68.0"
}
}