diff --git a/package.json b/package.json index 6e7f7bb..e39c331 100644 --- a/package.json +++ b/package.json @@ -1,129 +1,129 @@ { - "name": "beam", - "version": "0.2.1", - "homepage": "./", - "main": "./public/electron.js", - "author": "Si ", - "description": "Beaming Resonate", - "private": true, - "dependencies": { - "@emotion/css": "^11.9.0", - "@emotion/react": "^11.9.0", - "@emotion/styled": "^11.8.1", - "date-fns": "^2.28.0", - "immer": "^9.0.12", - "lodash": "^4.17.21", - "react": "^18.0.0", - "react-dom": "^18.0.0", - "react-h5-audio-player": "^3.8.3", - "react-icons": "^4.3.1", - "react-router-dom": "^6.3.0", - "react-scripts": "5.0.0", - "typescript": "^4.4.2", - "web-vitals": "^2.1.0" + "name": "beam", + "version": "0.3.0", + "homepage": "./", + "main": "./public/electron.js", + "author": "Si ", + "description": "Beaming Resonate", + "private": true, + "dependencies": { + "@emotion/css": "^11.9.0", + "@emotion/react": "^11.9.0", + "@emotion/styled": "^11.8.1", + "date-fns": "^2.28.0", + "immer": "^9.0.12", + "lodash": "^4.17.21", + "react": "^18.0.0", + "react-dom": "^18.0.0", + "react-h5-audio-player": "^3.8.3", + "react-icons": "^4.3.1", + "react-router-dom": "^6.3.0", + "react-scripts": "5.0.0", + "typescript": "^4.4.2", + "web-vitals": "^2.1.0" + }, + "scripts": { + "start": "PORT=8080 react-scripts start", + "build": "react-scripts build", + "serve": "sirv build --port 8080 --cors --single", + "test": "react-scripts test", + "eject": "react-scripts eject", + "predeploy": "npm run build", + "deploy": "gh-pages -d build", + "cypress:open": "cypress open", + "electron:start": "concurrently -k \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:8080 && electronmon .\"", + "electron:package:mac": "yarn build && electron-builder -m -c.extraMetadata.main=build/electron.js", + "electron:package:win": "yarn build && electron-builder -w -c.extraMetadata.main=build/electron.js", + "electron:package:linux": "yarn build && electron-builder -l -c.extraMetadata.main=build/electron.js", + "release": "electron-builder -c.extraMetadata.main=build/electron.js" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "prettier": {}, + "browserslist": { + "production": [ + "last 1 electron version" + ], + "development": [ + "last 1 electron version", + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "build": { + "appId": "com.resonate.beam", + "productName": "Beam", + "files": [ + "build/**/*", + "node_modules/**/*" + ], + "directories": { + "buildResources": "public" }, - "scripts": { - "start": "PORT=8080 react-scripts start", - "build": "react-scripts build", - "serve": "sirv build --port 8080 --cors --single", - "test": "react-scripts test", - "eject": "react-scripts eject", - "predeploy": "npm run build", - "deploy": "gh-pages -d build", - "cypress:open": "cypress open", - "electron:start": "concurrently -k \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:8080 && electronmon .\"", - "electron:package:mac": "yarn build && electron-builder -m -c.extraMetadata.main=build/electron.js", - "electron:package:win": "yarn build && electron-builder -w -c.extraMetadata.main=build/electron.js", - "electron:package:linux": "yarn build && electron-builder -l -c.extraMetadata.main=build/electron.js", - "release": "electron-builder -c.extraMetadata.main=build/electron.js" + "mac": { + "target": "dmg", + "icon": "build/icon.icns", + "publish": [ + "github" + ] }, - "eslintConfig": { - "extends": [ - "react-app", - "react-app/jest" - ] + "win": { + "target": "nsis", + "icon": "build/icon.ico", + "publish": [ + "github" + ] }, - "prettier": {}, - "browserslist": { - "production": [ - "last 1 electron version" - ], - "development": [ - "last 1 electron version", - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - }, - "build": { - "appId": "com.resonate.beam", - "productName": "Beam", - "files": [ - "build/**/*", - "node_modules/**/*" - ], - "directories": { - "buildResources": "public" - }, - "mac": { - "target": "dmg", - "icon": "build/icon.icns", - "publish": [ - "github" - ] - }, - "win": { - "target": "nsis", - "icon": "build/icon.ico", - "publish": [ - "github" - ] - }, - "linux": { - "target": "deb", - "category": "Audio", - "icon": "build/icon.icns", - "publish": [ - "github" - ] - } - }, - "devDependencies": { - "@commitlint/cli": "^16.2.3", - "@commitlint/config-conventional": "^16.2.1", - "@testing-library/jest-dom": "^5.14.1", - "@testing-library/react": "^12.0.0", - "@testing-library/user-event": "^13.2.1", - "@types/date-fns": "^2.6.0", - "@types/jest": "^27.0.1", - "@types/lodash": "^4.14.181", - "@types/node": "^16.7.13", - "@types/react": "^17.0.20", - "@types/react-dom": "^17.0.9", - "concurrently": "^7.1.0", - "cross-env": "^7.0.3", - "cypress": "^9.5.4", - "electron": "^18.0.3", - "electron-builder": "^22.14.13", - "electronmon": "^2.0.2", - "eslint": "^8.13.0", - "eslint-config-react-app": "^7.0.1", - "gh-pages": "^3.2.3", - "husky": "^7.0.4", - "lint-staged": "^12.3.7", - "prettier": "^2.6.2", - "sirv-cli": "^2.0.2", - "wait-on": "^6.0.1" - }, - "config": { - "commitizen": { - "path": "cz-conventional-changelog" - } - }, - "lint-staged": { - "src/**/*.{js,jsx,ts,tsx,json,css,scss}": [ - "prettier", - "eslint --rule 'no-console: [\"error\", { \"allow\": [\"warn\", \"error\"] }]'" - ] + "linux": { + "target": "deb", + "category": "Audio", + "icon": "build/icon.icns", + "publish": [ + "github" + ] + } + }, + "devDependencies": { + "@commitlint/cli": "^16.2.3", + "@commitlint/config-conventional": "^16.2.1", + "@testing-library/jest-dom": "^5.14.1", + "@testing-library/react": "^12.0.0", + "@testing-library/user-event": "^13.2.1", + "@types/date-fns": "^2.6.0", + "@types/jest": "^27.0.1", + "@types/lodash": "^4.14.181", + "@types/node": "^16.7.13", + "@types/react": "^17.0.20", + "@types/react-dom": "^17.0.9", + "concurrently": "^7.1.0", + "cross-env": "^7.0.3", + "cypress": "^9.5.4", + "electron": "^18.0.3", + "electron-builder": "^22.14.13", + "electronmon": "^2.0.2", + "eslint": "^8.13.0", + "eslint-config-react-app": "^7.0.1", + "gh-pages": "^3.2.3", + "husky": "^7.0.4", + "lint-staged": "^12.3.7", + "prettier": "^2.6.2", + "sirv-cli": "^2.0.2", + "wait-on": "^6.0.1" + }, + "config": { + "commitizen": { + "path": "cz-conventional-changelog" } + }, + "lint-staged": { + "src/**/*.{js,jsx,ts,tsx,json,css,scss}": [ + "prettier", + "eslint --rule 'no-console: [\"error\", { \"allow\": [\"warn\", \"error\"] }]'" + ] + } }