mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
78 lines
2.8 KiB
JSON
78 lines
2.8 KiB
JSON
{
|
|
"name": "spotube",
|
|
"version": "0.0.3",
|
|
"main": "index.js",
|
|
"author": "KR Tirtho",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "webpack --mode=production",
|
|
"dev": "nodemon -w src/** -e ts,tsx -x 'node esbuild.config.mjs'",
|
|
"check-types": "tsc --noEmit --watch",
|
|
"start": "cd dist && qode index.js",
|
|
"start:watch": "nodemon -w dist -e js -x \"npm start\"",
|
|
"start-dev": "concurrently -n \"esbuild,spotube,tsc\" -p \"{name}\" -c \"bgYellow.black.bold,bgGreen.black.bold,bgBlue.black.bold\" -i --default-input-target spotube \"npm run dev\" \"npm run start:watch\" \"npm run check-types\"",
|
|
"debug-dev": "concurrently -n \"esbuild,spotube,tsc\" -p \"{name}\" -c \"bgYellow.black.bold,bgGreen.black.bold,bgBlue.black.bold\" -i --default-input-target spotube \"npm run dev\" \"npm run debug:watch\" \"npm run check-types\"",
|
|
"start:trace": "qode ./dist/index.js --trace",
|
|
"debug": "cd dist && qode --inspect index.js",
|
|
"debug:watch": "nodemon -w dist -e js -x \"npm run debug\"",
|
|
"pack": "nodegui-packer -p ./dist",
|
|
"pack-deb": "node scripts/build-deb.js",
|
|
"pack-win32": "powershell.exe -ExecutionPolicy Unrestricted -Command \". '.\\scripts\\build-win32.ps1'\""
|
|
},
|
|
"dependencies": {
|
|
"@nodegui/nodegui": "0.27.0",
|
|
"@nodegui/react-nodegui": "0.10.0",
|
|
"axios": "^0.21.1",
|
|
"base64url": "^3.0.1",
|
|
"chalk": "^4.1.0",
|
|
"color": "^3.1.3",
|
|
"dotenv": "^8.2.0",
|
|
"du": "^1.0.0",
|
|
"express": "^4.17.1",
|
|
"html-to-text": "^7.0.0",
|
|
"is-url": "^1.2.4",
|
|
"jimp": "^0.16.1",
|
|
"node-localstorage": "^2.1.6",
|
|
"node-mpv": "^2.0.0-beta.2",
|
|
"open": "^7.4.2",
|
|
"react": "^16.14.0",
|
|
"react-dom": "^17.0.1",
|
|
"react-query": "^3.13.0",
|
|
"react-router": "^5.2.0",
|
|
"scrape-yt": "^1.4.7",
|
|
"spotify-web-api-node": "^5.0.2",
|
|
"uuid": "^8.3.2",
|
|
"ytdl-core": "^4.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nodegui/devtools": "^1.0.1",
|
|
"@nodegui/packer": "^1.4.1",
|
|
"@types/color": "^3.0.1",
|
|
"@types/du": "^1.0.0",
|
|
"@types/express": "^4.17.11",
|
|
"@types/html-to-text": "^6.0.0",
|
|
"@types/is-url": "^1.2.28",
|
|
"@types/node": "^14.11.1",
|
|
"@types/node-localstorage": "^1.3.0",
|
|
"@types/react": "^16.9.49",
|
|
"@types/react-router": "^5.1.11",
|
|
"@types/spotify-web-api-node": "^5.0.0",
|
|
"@types/uuid": "^8.3.0",
|
|
"@types/webpack-env": "^1.15.3",
|
|
"@vitejs/plugin-react-refresh": "^1.3.3",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"concurrently": "^6.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"esbuild": "^0.12.8",
|
|
"esbuild-loader": "^2.13.1",
|
|
"file-loader": "^6.2.0",
|
|
"fork-ts-checker-webpack-plugin": "^6.2.0",
|
|
"native-addon-loader": "^2.0.1",
|
|
"nodemon": "^2.0.7",
|
|
"typescript": "^4.2.3",
|
|
"webpack": "^5.27.0",
|
|
"webpack-cli": "^4.4.0"
|
|
}
|
|
}
|