webminidisc/package.json

76 lines
1.9 KiB
JSON
Raw Normal View History

2020-02-12 20:49:56 +00:00
{
"name": "webmd",
"version": "0.1.0",
"private": true,
"dependencies": {
2020-03-20 17:21:53 +00:00
"@ffmpeg/ffmpeg": "^0.6.1",
2020-08-22 10:41:06 +01:00
"@material-ui/core": "^4.11.0",
2020-03-20 17:35:41 +00:00
"@material-ui/icons": "^4.9.1",
2020-08-22 10:41:06 +01:00
"@material-ui/lab": "^4.0.0-alpha.56",
"@reduxjs/toolkit": "^1.4.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",
2020-09-06 16:35:59 +01:00
"@types/jsmediatags": "^3.9.1",
2020-09-02 19:18:50 +01:00
"@types/node": "^12.12.55",
"@types/react": "^16.9.49",
2020-08-22 10:41:06 +01:00
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
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",
"husky": "^4.2.5",
2020-09-06 16:35:59 +01:00
"jsmediatags": "^3.9.3",
2020-09-02 19:18:50 +01:00
"lint-staged": "^10.2.13",
2020-12-24 13:15:32 +00:00
"netmd-js": "^1.2.2",
2020-03-20 17:21:53 +00:00
"prettier": "^1.19.1",
2020-08-22 10:41:06 +01:00
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-dropzone": "^10.2.2",
"react-redux": "^7.2.1",
2020-02-12 20:49:56 +00:00
"react-scripts": "3.3.1",
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",
2020-09-02 19:23:26 +01:00
"typescript": "^4.0.2",
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",
"async-mutex": "^0.2.4",
2020-03-20 17:35:41 +00:00
"gh-pages": "^2.2.0"
2020-02-12 20:49:56 +00:00
}
}