-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 3.29 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
{
"name": "chuckzokoye.com",
"description": "My portfolio website.",
"version": "1.0.0",
"author": {
"name": "Chuckz Okoye",
"email": "tricelex@gmail.com",
"url": "https://chuckzokoye.com/"
},
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/tricelex/chuckzokoye.com"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"component:create": "hygen component new",
"type-check": "tsc",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"test": "jest"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@graphcms/rich-text-react-renderer": "^0.6.1",
"@graphcms/rich-text-types": "^0.5.0",
"@mailchimp/mailchimp_marketing": "^3.0.78",
"@sentry/nextjs": "^7.16.0",
"@svgr/webpack": "6.5.0",
"autoprefixer": "^10.4.12",
"browserslist": "4.21.4",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"focus-trap-react": "^10.0.0",
"formik": "^2.2.9",
"framer-motion": "^7.6.1",
"glob-parent": "6.0.2",
"graphql": "^16.6.0",
"immer": "9.0.16",
"md5": "^2.3.0",
"next": "^12.3.1",
"next-themes": "^0.2.1",
"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",
"trim": "1.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/mailchimp__mailchimp_marketing": "^3.0.6",
"@types/md5": "^2.3.2",
"@types/node": "^18.11.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-headroom": "^2.2.2",
"@types/react-syntax-highlighter": "^15.5.5",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"babel-loader": "^8.2.5",
"eslint": "^8.26.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"hygen": "^6.2.11",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"jest-runner-eslint": "^1.1.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^2.2.0",
"postcss": "8.4.18",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"storybook-tailwind-dark-mode": "^1.0.15",
"tailwindcss": "^3.2.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "4.8.4",
"webpack": "5.74.0"
},
"resolutions": {
"browserslist": "4.16.5",
"glob-parent": "5.1.2",
"immer": "9.0.6",
"postcss": "8.4.5",
"trim": "0.0.3"
},
"jest-runner-eslint": {
"cliOptions": {
"ignorePath": "./.gitignore"
}
}
}