{ "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.2.0", "@reach/dialog": "^0.16.2", "@reach/portal": "^0.16.2", "@reach/visually-hidden": "^0.16.0", "babel-core": "^6.26.3", "babel-plugin-styled-components": "^2.0.2", "bcryptjs": "^2.4.3", "cloudinary-build-url": "^0.2.4", "dotenv": "^14.3.2", "escape-html": "^1.0.3", "iron-session": "^6.0.5", "jsonwebtoken": "^8.5.1", "mongodb": "^4.3.1", "mongoose": "^6.1.8", "next": "^12.0.9", "next-with-apollo": "^5.2.1", "normalize.css": "^8.0.1", "nprogress": "^0.2.0", "plaiceholder": "^2.2.0", "prop-types": "^15.8.1", "react": "^17.0.2", "react-dom": "^17.0.2", "react-icons": "^4.3.1", "sharp": "^0.29.3", "styled-components": "^5.3.3", "swr": "^0.5.6", "waait": "^1.0.5" }, "devDependencies": { "@babel/core": "^7.16.12", "@babel/preset-env": "^7.16.11", "@testing-library/jest-dom": "^5.16.1", "@testing-library/react": "^12.1.2", "@testing-library/user-event": "^13.5.0", "@typescript-eslint/eslint-plugin": "^5.10.1", "@typescript-eslint/parser": "^5.10.1", "eslint": "^8.8.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^8.3.0", "eslint-config-wesbos": "^3.0.2", "eslint-plugin-html": "^6.2.0", "eslint-plugin-import": "^2.25.4", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-react": "^7.28.0", "eslint-plugin-react-hooks": "^4.3.0", "jest": "^27.4.7", "prettier": "^2.5.1", "typescript": "^4.5.5" }, "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 } ] ] } } } }