Upgrade dependencies
This commit is contained in:
@ -37,6 +37,9 @@ let nextConfig = {
|
||||
reactStrictMode: true,
|
||||
poweredByHeader: false,
|
||||
env: loadConfig(process.env.NODE_ENV),
|
||||
experimental: {
|
||||
esmExternals: false
|
||||
},
|
||||
|
||||
webpack(config, options) {
|
||||
config.resolve.modules.push(path.resolve('./'));
|
||||
|
13460
package-lock.json
generated
13460
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
42
package.json
42
package.json
@ -16,39 +16,39 @@
|
||||
"postinstall": "husky install"
|
||||
},
|
||||
"dependencies": {
|
||||
"@chakra-ui/icons": "^1.0.14",
|
||||
"@chakra-ui/react": "^1.6.5",
|
||||
"@emotion/react": "^11.4.1",
|
||||
"@chakra-ui/icons": "^1.0.16",
|
||||
"@chakra-ui/react": "^1.6.10",
|
||||
"@emotion/react": "^11.5.0",
|
||||
"@emotion/styled": "^11.3.0",
|
||||
"@mapbox/rehype-prism": "^0.7.0",
|
||||
"@mapbox/rehype-prism": "^0.8.0",
|
||||
"@mdx-js/loader": "^1.6.22",
|
||||
"@next/mdx": "^11.1.0",
|
||||
"@next/mdx": "^12.0.1",
|
||||
"@svgr/webpack": "^5.5.0",
|
||||
"date-fns": "^2.23.0",
|
||||
"date-fns": "^2.25.0",
|
||||
"focus-visible": "^5.2.0",
|
||||
"framer-motion": "^4.1.17",
|
||||
"next": "^11.1.0",
|
||||
"prism-themes": "^1.8.0",
|
||||
"framer-motion": "^4.0.0",
|
||||
"next": "^12.0.1",
|
||||
"prism-themes": "^1.9.0",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2",
|
||||
"styled-components": "^5.3.0"
|
||||
"styled-components": "^5.3.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/eslint": "7.28.0",
|
||||
"@types/eslint": "7.28.2",
|
||||
"@types/gh-pages": "^3.2.0",
|
||||
"@types/glob": "^7.1.4",
|
||||
"@types/react": "17.0.16",
|
||||
"@types/react-dom": "17.0.2",
|
||||
"@types/styled-components": "^5.1.12",
|
||||
"eslint": "7.32.0",
|
||||
"eslint-config-next": "11.0.1",
|
||||
"@types/glob": "^7.2.0",
|
||||
"@types/react": "17.0.33",
|
||||
"@types/react-dom": "17.0.10",
|
||||
"@types/styled-components": "^5.1.15",
|
||||
"eslint": "<8.0.0",
|
||||
"eslint-config-next": "12.0.1",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"gh-pages": "^3.2.3",
|
||||
"glob": "^7.1.7",
|
||||
"husky": "^7.0.1",
|
||||
"glob": "^7.2.0",
|
||||
"husky": "^7.0.4",
|
||||
"pretty-quick": "^3.1.1",
|
||||
"serve": "^12.0.0",
|
||||
"typescript": "4.3.5"
|
||||
"serve": "^12.0.1",
|
||||
"typescript": "4.4.4"
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
|
@ -1,7 +1,11 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext"
|
||||
],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
@ -12,8 +16,15 @@
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve"
|
||||
"jsx": "preserve",
|
||||
"incremental": true
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||
"exclude": ["node_modules"]
|
||||
"include": [
|
||||
"next-env.d.ts",
|
||||
"**/*.ts",
|
||||
"**/*.tsx"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user