mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
Bumps [mongoose](https://github.com/Automattic/mongoose) from 6.4.3 to 6.4.6. - [Release notes](https://github.com/Automattic/mongoose/releases) - [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md) - [Commits](https://github.com/Automattic/mongoose/compare/6.4.3...6.4.6) --- updated-dependencies: - dependency-name: mongoose dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
146 lines
3.3 KiB
JSON
146 lines
3.3 KiB
JSON
{
|
|
"name": "weddingsite",
|
|
"version": "0.2.0",
|
|
"description": "Wedding Website",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_OPTIONS='--inspect' next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"test": "NODE_ENV=test jest --watch"
|
|
},
|
|
"dependencies": {
|
|
"@plaiceholder/next": "^2.4.0",
|
|
"@reach/dialog": "^0.17.0",
|
|
"@reach/portal": "^0.17.0",
|
|
"@reach/visually-hidden": "^0.17.0",
|
|
"babel-core": "^6.26.3",
|
|
"babel-plugin-styled-components": "^2.0.7",
|
|
"bcryptjs": "^2.4.3",
|
|
"cloudinary-build-url": "^0.2.4",
|
|
"dotenv": "^16.0.1",
|
|
"escape-html": "^1.0.3",
|
|
"html-escaper": "^3.0.3",
|
|
"iron-session": "^6.1.3",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"mongodb": "^4.7.0",
|
|
"mongoose": "^6.4.6",
|
|
"next": "^12.2.0",
|
|
"next-with-apollo": "^5.3.0",
|
|
"normalize.css": "^8.0.1",
|
|
"nprogress": "^0.2.0",
|
|
"plaiceholder": "^2.4.0",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-icons": "^4.4.0",
|
|
"sharp": "^0.30.7",
|
|
"styled-components": "^5.3.5",
|
|
"swr": "^1.3.0",
|
|
"waait": "^1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.18.6",
|
|
"@babel/preset-env": "^7.18.6",
|
|
"@testing-library/jest-dom": "^5.16.4",
|
|
"@testing-library/react": "^12.1.4",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
|
"@typescript-eslint/parser": "^5.30.5",
|
|
"eslint": "^8.19.0",
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-config-wesbos": "^3.0.2",
|
|
"eslint-plugin-html": "^6.2.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-jsx-a11y": "^6.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.30.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"jest": "^27.5.1",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"wesbos"
|
|
],
|
|
"rules": {
|
|
"react/prop-types": 0
|
|
}
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "jsdom",
|
|
"setupFiles": [
|
|
"./.jest/setEnvVars.js"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"./jest.setup.js"
|
|
]
|
|
},
|
|
"//": "This is our babel config, I prefer this over a .babelrc file",
|
|
"babel": {
|
|
"plugins": [
|
|
[
|
|
"styled-components",
|
|
{
|
|
"ssr": true,
|
|
"displayName": true,
|
|
"preprocess": false
|
|
}
|
|
]
|
|
],
|
|
"env": {
|
|
"development": {
|
|
"presets": [
|
|
"next/babel"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"styled-components",
|
|
{
|
|
"ssr": true,
|
|
"displayName": true,
|
|
"preprocess": false
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"production": {
|
|
"presets": [
|
|
"next/babel"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"styled-components",
|
|
{
|
|
"ssr": true,
|
|
"displayName": true
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"test": {
|
|
"presets": [
|
|
[
|
|
"next/babel",
|
|
{
|
|
"preset-env": {
|
|
"modules": "commonjs"
|
|
}
|
|
}
|
|
]
|
|
],
|
|
"plugins": [
|
|
[
|
|
"styled-components",
|
|
{
|
|
"ssr": true,
|
|
"displayName": true
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|