ente/package.json

110 lines
3.3 KiB
JSON
Raw Normal View History

2020-09-09 21:09:51 +00:00
{
"name": "bada-frame",
2022-05-24 07:30:33 +00:00
"version": "0.9.1",
2020-09-09 21:09:51 +00:00
"private": true,
"scripts": {
"dev": "next dev",
2022-01-25 09:00:28 +00:00
"albums": "next dev -p 3002",
2022-03-07 07:46:07 +00:00
"prebuild": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
2020-09-09 21:09:51 +00:00
"build": "next build",
2021-03-21 14:18:38 +00:00
"build-analyze": "ANALYZE=true next build",
2021-06-09 10:27:11 +00:00
"postbuild": "next export",
2021-08-13 02:23:04 +00:00
"start": "next start",
"prepare": "husky install"
2020-09-09 21:09:51 +00:00
},
"dependencies": {
2022-06-14 08:25:02 +00:00
"@date-io/date-fns": "^2.14.0",
2021-06-15 20:34:36 +00:00
"@ente-io/next-with-workbox": "^1.0.3",
2022-04-23 17:11:27 +00:00
"@mui/icons-material": "^5.6.2",
2022-06-13 14:23:26 +00:00
"@mui/material": "^5.6.2",
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest",
"@mui/styled-engine-sc": "^5.6.1",
2022-06-14 08:25:02 +00:00
"@mui/x-date-pickers": "^5.0.0-alpha.6",
2021-06-21 06:28:24 +00:00
"@sentry/nextjs": "^6.7.1",
2021-04-06 13:41:57 +00:00
"@stripe/stripe-js": "^1.13.2",
2021-05-29 06:27:52 +00:00
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"axios": "^0.21.3",
"bip39": "^3.0.4",
"bootstrap": "^4.5.2",
2022-02-20 07:56:52 +00:00
"bs58": "^4.0.1",
2021-05-18 13:45:40 +00:00
"chrono-node": "^2.2.6",
2020-09-27 17:18:57 +00:00
"comlink": "^4.3.0",
2021-05-24 12:04:37 +00:00
"debounce-promise": "^3.1.2",
2021-05-29 06:27:52 +00:00
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react-hooks": "^4.2.0",
"exifr": "^7.1.3",
2022-03-07 10:17:33 +00:00
"ffmpeg-wasm": "file:./thirdparty/ffmpeg-wasm",
2021-08-13 14:57:39 +00:00
"file-type": "^16.5.3",
"formik": "^2.1.5",
"heic-convert": "^1.2.4",
"http-proxy-middleware": "^1.0.5",
2021-03-27 13:51:52 +00:00
"is-electron": "^2.2.0",
2021-08-11 08:24:27 +00:00
"jszip": "3.7.1",
2020-09-26 17:15:39 +00:00
"libsodium-wrappers": "^0.7.8",
2020-11-20 08:47:20 +00:00
"localforage": "^1.9.0",
2022-02-20 07:56:52 +00:00
"next": "^12.1.0",
"next-transpile-modules": "^9.0.0",
"photoswipe": "file:./thirdparty/photoswipe",
2021-11-10 12:31:32 +00:00
"piexifjs": "^1.0.6",
2021-08-16 06:15:45 +00:00
"react": "^17.0.2",
2020-09-09 21:09:51 +00:00
"react-bootstrap": "^1.3.0",
2021-09-04 18:28:27 +00:00
"react-dom": "^17.0.2",
"react-dropzone": "^11.2.4",
2021-06-17 12:49:45 +00:00
"react-otp-input": "^2.3.1",
2021-05-20 11:57:13 +00:00
"react-select": "^4.3.1",
"react-top-loading-bar": "^2.0.1",
2020-11-20 17:24:21 +00:00
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.6",
2020-11-07 15:43:00 +00:00
"react-window-infinite-loader": "^1.0.5",
2020-09-09 21:09:51 +00:00
"scrypt-js": "^3.0.1",
2022-06-13 14:23:26 +00:00
"styled-components": "^5.3.5",
2021-05-23 14:25:48 +00:00
"workbox-precaching": "^6.1.5",
"workbox-recipes": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-window": "^6.1.5",
2021-03-04 16:52:15 +00:00
"xml-js": "^1.6.11",
"yup": "^0.29.3"
2020-09-09 21:09:51 +00:00
},
"devDependencies": {
2020-10-03 14:21:56 +00:00
"@next/bundle-analyzer": "^9.5.3",
2021-05-24 12:04:37 +00:00
"@types/debounce-promise": "^3.1.3",
2020-10-03 14:21:56 +00:00
"@types/libsodium-wrappers": "^0.7.8",
2020-09-09 21:09:51 +00:00
"@types/node": "^14.6.4",
"@types/photoswipe": "^4.1.1",
2020-09-09 21:09:51 +00:00
"@types/react": "^16.9.49",
2021-08-17 08:19:14 +00:00
"@types/react-collapse": "^5.0.1",
2021-11-01 12:32:50 +00:00
"@types/react-datepicker": "^4.1.7",
2021-05-20 11:57:13 +00:00
"@types/react-select": "^4.0.15",
2020-11-07 15:43:00 +00:00
"@types/react-window": "^1.8.2",
"@types/react-window-infinite-loader": "^1.0.3",
2022-06-13 14:23:26 +00:00
"@types/styled-components": "^5.1.25",
"@types/yup": "^0.29.7",
2022-06-13 14:23:26 +00:00
"babel-plugin-styled-components": "^1.11.1",
2021-05-29 06:27:52 +00:00
"eslint": "^7.27.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
2021-05-29 06:27:52 +00:00
"eslint-plugin-react": "^7.23.2",
2021-08-13 02:23:04 +00:00
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
2021-08-12 16:12:23 +00:00
"prettier": "2.3.2",
2022-03-21 09:03:18 +00:00
"react-icons": "^4.3.1",
2021-06-07 08:51:20 +00:00
"typescript": "^4.1.3"
2020-09-26 12:36:02 +00:00
},
"standard": {
"parser": "babel-eslint"
2021-08-13 02:23:04 +00:00
},
"lint-staged": {
2021-08-16 06:15:45 +00:00
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
2022-06-13 14:23:26 +00:00
},
"resolutions": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest"
2020-09-09 21:09:51 +00:00
}
}