webminidisc/package.json

82 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2020-02-12 20:49:56 +00:00
{
"name": "webmd",
2021-11-18 07:37:14 +00:00
"version": "0.2.7",
2020-02-12 20:49:56 +00:00
"private": true,
"dependencies": {
2021-01-17 10:32:44 +00:00
"@ffmpeg/ffmpeg": "0.6.1",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@reduxjs/toolkit": "^1.5.0",
2020-02-12 20:49:56 +00:00
"@testing-library/jest-dom": "^4.2.4",
2020-08-22 10:41:06 +01:00
"@testing-library/react": "^9.5.0",
2020-02-12 20:49:56 +00:00
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
2021-01-17 10:32:44 +00:00
"@types/node": "^12.19.14",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-redux": "^7.1.15",
2021-02-03 15:56:00 +00:00
"@types/styled-components": "^5.1.7",
2020-03-20 17:21:53 +00:00
"@types/w3c-web-usb": "^1.0.4",
2020-08-22 10:41:06 +01:00
"clsx": "^1.1.1",
2021-01-17 10:32:44 +00:00
"husky": "^4.3.8",
"jconv": "^0.1.5",
2021-01-17 10:32:44 +00:00
"lint-staged": "^10.5.3",
"music-metadata-browser": "^2.2.0",
2021-07-19 09:41:10 +01:00
"netmd-js": "^2.0.1",
2020-03-20 17:21:53 +00:00
"prettier": "^1.19.1",
2021-01-17 10:32:44 +00:00
"react": "^16.14.0",
"react-beautiful-dnd": "^13.1.0",
2021-01-17 10:32:44 +00:00
"react-dom": "^16.14.0",
2020-08-22 10:41:06 +01:00
"react-dropzone": "^10.2.2",
2021-01-17 10:32:44 +00:00
"react-redux": "^7.2.2",
2020-02-12 20:49:56 +00:00
"react-scripts": "3.3.1",
2021-02-03 15:56:00 +00:00
"react95": "^3.5.0",
2020-04-10 15:31:15 +01:00
"recorderjs": "^1.0.1",
2020-03-20 17:21:53 +00:00
"redux-batched-actions": "^0.4.1",
2021-02-03 15:56:00 +00:00
"styled-components": "^5.2.1",
2021-01-17 10:32:44 +00:00
"typescript": "^4.1.3",
2020-03-20 17:35:41 +00:00
"worker-loader": "^2.0.0"
2020-02-12 20:49:56 +00:00
},
2020-03-20 17:44:44 +00:00
"homepage": "https://stefano.brilli.me/webminidisc/",
2020-02-12 20:49:56 +00:00
"scripts": {
"start": "react-scripts start",
2020-03-24 09:02:08 +00:00
"build": "react-scripts build && cat public/extra-service-worker.js build/service-worker.js > build/final-service-worker.js",
2020-02-12 20:49:56 +00:00
"test": "react-scripts test",
2020-03-20 17:35:41 +00:00
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
2020-02-12 20:49:56 +00:00
},
"eslintConfig": {
2020-03-20 17:21:53 +00:00
"extends": [
"react-app",
"prettier"
]
2020-02-12 20:49:56 +00:00
},
"browserslist": {
"production": [
2020-04-10 10:19:56 +01:00
"last 2 chrome version"
2020-02-12 20:49:56 +00:00
],
"development": [
2020-04-10 10:19:56 +01:00
"last 2 chrome version"
2020-02-12 20:49:56 +00:00
]
2020-03-20 17:21:53 +00:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,scss,md}": [
"prettier --check"
]
},
"devDependencies": {
2020-08-22 10:41:06 +01:00
"@types/dom-mediacapture-record": "^1.0.7",
"@types/react-beautiful-dnd": "^13.1.1",
2021-09-20 22:02:54 +01:00
"@types/wicg-mediasession": "^1.1.3",
2021-01-17 10:32:44 +00:00
"async-mutex": "^0.2.6",
2020-03-20 17:35:41 +00:00
"gh-pages": "^2.2.0"
2020-02-12 20:49:56 +00:00
}
}