weddingsite/package.json

147 lines
3.3 KiB
JSON
Raw Normal View History

2021-06-04 00:58:40 +00:00
{
2021-06-04 21:01:31 +00:00
"name": "weddingsite",
"version": "0.2.0",
2021-06-04 00:58:40 +00:00
"description": "Wedding Website",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
2022-01-28 23:04:29 +00:00
"start": "next start",
"test": "NODE_ENV=test jest --watch"
2021-06-04 00:58:40 +00:00
},
"dependencies": {
"@plaiceholder/next": "^2.4.0",
2022-05-27 01:02:55 +00:00
"@reach/dialog": "^0.17.0",
"@reach/portal": "^0.17.0",
"@reach/visually-hidden": "^0.17.0",
2021-06-04 00:58:40 +00:00
"babel-core": "^6.26.3",
2022-05-27 01:02:55 +00:00
"babel-plugin-styled-components": "^2.0.7",
2021-06-04 00:58:40 +00:00
"bcryptjs": "^2.4.3",
2022-01-28 04:59:21 +00:00
"cloudinary-build-url": "^0.2.4",
2022-05-27 01:02:55 +00:00
"dotenv": "^16.0.1",
"escape-html": "^1.0.3",
"html-escaper": "^3.0.3",
2022-05-27 01:02:55 +00:00
"iron-session": "^6.1.3",
2021-06-04 00:58:40 +00:00
"jsonwebtoken": "^8.5.1",
2022-06-16 18:45:51 +00:00
"mongodb": "^4.7.0",
"mongoose": "^6.4.3",
"next": "^12.2.0",
"next-with-apollo": "^5.3.0",
2021-06-04 00:58:40 +00:00
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"plaiceholder": "^2.4.0",
"prop-types": "^15.8.1",
2021-06-04 00:58:40 +00:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
2022-06-16 18:45:51 +00:00
"react-icons": "^4.4.0",
"sharp": "^0.30.7",
2022-05-27 01:02:55 +00:00
"styled-components": "^5.3.5",
2022-07-05 22:40:26 +00:00
"swr": "^1.3.0",
2021-06-04 00:58:40 +00:00
"waait": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
2022-05-27 01:02:55 +00:00
"@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",
2022-05-27 01:02:55 +00:00
"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",
2022-06-16 18:45:51 +00:00
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^27.5.1",
2022-06-16 18:45:51 +00:00
"prettier": "^2.7.1",
"typescript": "^4.7.4"
2021-06-04 00:58:40 +00:00
},
"eslintConfig": {
"extends": [
"wesbos"
],
"rules": {
"react/prop-types": 0
}
2021-06-04 00:58:40 +00:00
},
2022-01-28 23:04:29 +00:00
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"./.jest/setEnvVars.js"
],
"setupFilesAfterEnv": [
"./jest.setup.js"
]
},
2021-06-04 00:58:40 +00:00
"//": "This is our babel config, I prefer this over a .babelrc file",
"babel": {
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true,
"preprocess": false
}
]
],
2021-06-04 00:58:40 +00:00
"env": {
"development": {
"presets": [
"next/babel"
],
"plugins": [
[
"styled-components",
{
"ssr": true,
"displayName": true,
"preprocess": false
2021-06-04 00:58:40 +00:00
}
]
]
},
"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
}
]
]
}
}
}
}