spotube/package.json
2021-03-31 16:24:10 -07:00

76 lines
2.4 KiB
JSON

{
"name": "spotube",
"version": "0.0.1",
"main": "index.js",
"author": "KR Tirtho",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"dev": "cross-env TSC_WATCHFILE=UseFsEvents webpack --mode=development",
"start": "qode ./dist/index.js",
"start:watch": "nodemon -e node -w ./*.babelrc -x \"npm start\"",
"start-dev": "concurrently -n \"webpack,spotube\" -p \"{name}-{pid}\" -c \"bgBlue,bgGreen\" -i --default-input-target spotube \"npm run dev\" \"npm run start:watch\"",
"start:trace": "qode ./dist/index.js --trace",
"debug": "qode --inspect ./dist/index.js",
"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"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.13.0",
"@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",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"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"
}
}