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