-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
121 lines (121 loc) · 3.67 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "portfolio",
"description": "A redesign of my portfolio website.",
"version": "4.7.0",
"author": {
"name": "Jacob Herper",
"email": "[email protected]",
"url": "https://herper.io/"
},
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/jakeherp/portfolio"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"component:create": "hygen component new",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"svgr": "svgr --icon --title-prop --replace-attr-values '#000=currentColor' --svg-props 'focusable=false' --svg-props 'aria-hidden=true' --typescript --index-template ./svgr/index-template.js --template ./svgr/template.js -d src/components/atoms/Icons src/components/atoms/Icons/assets",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"test": "jest"
},
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@portabletext/react": "^3.0.7",
"@sanity/code-input": "^4.1.1",
"@sanity/image-url": "^1.0.2",
"@sanity/orderable-document-list": "^1.1.0",
"@sanity/vision": "^3.15.1",
"@sentry/nextjs": "^7.64.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.0.2",
"classnames": "^2.3.2",
"date-fns": "^2.30.0",
"eslint-config-next": "13.4.19",
"focus-trap-react": "^10.2.1",
"formik": "^2.4.3",
"framer-motion": "^10.16.1",
"md5": "^2.3.0",
"next": "^13.4.19",
"next-sanity": "^5.4.6",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.4",
"prism-react-renderer": "^2.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-headroom": "^3.2.1",
"react-syntax-highlighter": "^15.5.0",
"react-typed": "^1.2.0",
"sanity": "^3.15.1",
"sanity-plugin-vercel-deploy": "^3.3.4",
"sharp": "^0.32.5",
"styled-components": "6.0.7",
"typescript": "5.2.2",
"yup": "^1.2.0"
},
"devDependencies": {
"@bbbtech/storybook-formik": "^2.6.0",
"@sanity/eslint-config-studio": "^3.0.0",
"@storybook/addon-a11y": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.3.2",
"@storybook/nextjs": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/testing-library": "0.2.0",
"@svgr/cli": "^8.1.0",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/jest": "^29.5.4",
"@types/mailchimp__mailchimp_marketing": "^3.0.10",
"@types/md5": "^2.3.2",
"@types/nodemailer": "^6.4.9",
"@types/react-headroom": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"autoprefixer": "^10.4.15",
"browserslist": "^4.21.10",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-storybook": "^0.6.13",
"hygen": "^6.2.11",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-runner-eslint": "^2.1.0",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"storybook": "^7.3.2",
"tailwindcss": "^3.3.3",
"tsconfig-paths-webpack-plugin": "^4.1.0"
},
"jest-runner-eslint": {
"cliOptions": {
"ignorePath": "./.gitignore"
}
}
}