ente/package.json

98 lines
2.8 KiB
JSON
Raw Normal View History

2020-09-09 21:09:51 +00:00
{
"name": "bada-frame",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
2021-05-29 06:27:52 +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",
2020-09-13 08:41:01 +00:00
"postbuild": "next-on-netlify",
2021-05-29 06:27:52 +00:00
"start": "next start",
"lint-staged": "lint-staged",
"postinstall": "husky install"
2020-09-09 21:09:51 +00:00
},
"dependencies": {
2021-03-08 11:59:14 +00:00
"@sentry/browser": "^5.21.3",
"@sentry/integrations": "^5.21.3",
"@sentry/node": "^5.21.3",
2021-06-12 17:14:21 +00:00
"@sentry/types": "^6.6.0",
2021-03-08 11:59:14 +00:00
"@sentry/webpack-plugin": "^1.12.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.20.0",
"bootstrap": "^4.5.2",
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",
2021-01-12 10:18:50 +00:00
"exif-js": "^2.3.0",
"formik": "^2.1.5",
2021-02-23 08:20:27 +00:00
"heic2any": "^0.0.3",
"http-proxy-middleware": "^1.0.5",
2021-03-27 13:51:52 +00:00
"is-electron": "^2.2.0",
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",
2021-06-07 08:51:20 +00:00
"next": "^10.2.3",
2021-05-26 15:37:38 +00:00
"next-on-netlify": "^3.0.1",
2021-05-23 14:25:48 +00:00
"next-with-workbox": "^2.0.1",
"node-forge": "^0.10.0",
"photoswipe": "file:./thirdparty/photoswipe",
2020-09-09 21:09:51 +00:00
"react": "16.13.1",
"react-bootstrap": "^1.3.0",
2021-03-11 16:03:07 +00:00
"react-burger-menu": "^3.0.4",
2020-09-09 21:09:51 +00:00
"react-dom": "16.13.1",
"react-dropzone": "^11.2.4",
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",
"styled-components": "^5.2.0",
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",
"@types/localforage": "^0.0.34",
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-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",
2020-09-09 21:09:51 +00:00
"@types/styled-components": "^5.1.3",
"@types/yup": "^0.29.7",
2020-09-09 21:09:51 +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-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
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-05-29 06:27:52 +00:00
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged"
}
2020-09-09 21:09:51 +00:00
}
}