mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
111 lines
2.5 KiB
JSON
111 lines
2.5 KiB
JSON
{
|
|
"name": "weddingsite",
|
|
"version": "0.1.0",
|
|
"description": "Wedding Website",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_OPTIONS='--inspect' next dev",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"babel-core": "^6.26.3",
|
|
"babel-plugin-styled-components": "^1.12.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"cloudinary-build-url": "^0.2.1",
|
|
"dotenv": "^10.0.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"mongodb": "^3.6.9",
|
|
"mongoose": "^5.12.13",
|
|
"next": "^10.2.3",
|
|
"next-iron-session": "^4.1.13",
|
|
"next-with-apollo": "^5.1.1",
|
|
"normalize.css": "^8.0.1",
|
|
"nprogress": "^0.2.0",
|
|
"prop-types": "^15.7.2",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-icons": "^4.2.0",
|
|
"styled-components": "^5.3.0",
|
|
"swr": "^0.5.6",
|
|
"waait": "^1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.14.3",
|
|
"@babel/preset-env": "^7.14.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
"@typescript-eslint/parser": "^4.25.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-airbnb": "^18.2.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-config-wesbos": "^2.0.0-beta.7",
|
|
"eslint-plugin-html": "^6.1.2",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-react": "^7.24.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"prettier": "^2.3.0",
|
|
"typescript": "^4.3.2"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"wesbos"
|
|
]
|
|
},
|
|
"//": "This is our babel config, I prefer this over a .babelrc file",
|
|
"babel": {
|
|
"env": {
|
|
"development": {
|
|
"presets": [
|
|
"next/babel"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"styled-components",
|
|
{
|
|
"ssr": true,
|
|
"displayName": true
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"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
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|