-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.89 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
{
"name": "portfolio-site",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "concurrently yarn:lint:*",
"lint:next": "next lint --fix",
"lint:styles": "stylelint \"**/*.{css,scss}\" --fix",
"test": "concurrently yarn:test:*",
"test:storybook": "test-storybook --coverage",
"test:ts": "tsc",
"format": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@fontsource/work-sans": "^5.1.1",
"@google-recaptcha/react": "^1.2.3",
"@hookform/resolvers": "^3.10.0",
"@preact/signals-react": "^2.2.0",
"@types/node": "22.5.1",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"date-fns": "^3.6.0",
"eslint": "^9.19.0",
"eslint-config-next": "^15.1.6",
"msw": "^2.3.5",
"next": "^15.1.6",
"postmark": "^4.0.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"typescript": "5.5.4",
"yup": "^1.6.1"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@storybook/addon-a11y": "^8.2.9",
"@storybook/addon-coverage": "^1.0.4",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/manager-api": "^8.2.9",
"@storybook/nextjs": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/test-runner": "^0.19.1",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^8.2.9",
"axe-playwright": "^2.0.2",
"classnames": "^2.5.1",
"concurrently": "^9.1.2",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-markdownlint": "^0.6.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.2",
"lodash": "^4.17.21",
"markdown-loader": "^8.0.0",
"msw-storybook-addon": "^2.0.3",
"next-themes": "^0.3.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"react-docgen-typescript": "^2.2.2",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"storybook": "^8.2.9",
"stylelint": "^16.14.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.10.1",
"stylelint-stylistic": "^0.4.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,mdx}": [
"prettier --write",
"yarn lint:next"
],
"*.{scss,css}": [
"prettier --write",
"yarn lint:styles"
]
},
"msw": {
"workerDirectory": "public"
}
}