forked from alexgoni/codeit-resources-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.9 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
{
"name": "codeit-resources-2.0",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint:fix": "eslint 'src/**/*.{ts,tsx,js,jsx}' --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.670.0",
"@aws-sdk/client-ses": "^3.679.0",
"@hookform/resolvers": "^3.9.0",
"@tanstack/react-query": "^5.59.15",
"@tanstack/react-query-devtools": "^5.59.15",
"aws-amplify": "^6.6.4",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"framer-motion": "^11.11.9",
"jotai": "^2.10.1",
"lodash.isequal": "^4.5.0",
"next": "14.2.10",
"next-auth": "^4.24.10",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"tailwindcss-preset-px-to-rem": "^1.2.1",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@aws-amplify/backend": "^1.5.1",
"@aws-amplify/backend-cli": "^1.3.0",
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-essentials": "^8.4.1",
"@storybook/addon-interactions": "^8.4.1",
"@storybook/addon-onboarding": "^8.4.1",
"@storybook/blocks": "^8.4.1",
"@storybook/nextjs": "^8.4.1",
"@storybook/react": "^8.4.1",
"@storybook/test": "^8.4.1",
"@svgr/core": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"aws-cdk": "^2.137.0",
"aws-cdk-lib": "^2.137.0",
"constructs": "^10.3.0",
"esbuild": "^0.20.2",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.10.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"storybook": "^8.4.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.2",
"typescript": "^5"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}