react-audio-viz
Version:
A delightfully simple yet impressively extendable audio visualization framework for React
106 lines (105 loc) • 3 kB
JSON
{
"name": "react-audio-viz",
"version": "0.0.4",
"description": "A delightfully simple yet impressively extendable audio visualization framework for React",
"repository": {
"type": "git",
"url": "https://github.com/bibekg/react-audio-viz"
},
"author": "Bibek Ghimire",
"license": "MIT",
"main": "dist/lib/index.js",
"files": [
"dist/lib"
],
"scripts": {
"prettify": "prettier --write './src/**/*.{ts,tsx}'",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"lib:dev": "concurrently -r \"npm:type-check:watch\" \"npm:start\"",
"lib:start": "parcel ./src/index.html",
"lib:build": "tsc --outDir dist/lib --jsx react src/lib/index.ts",
"docs:dev": "parcel serve src/docs/200.html -d dev/docs",
"docs:build": "parcel build src/docs/200.html -d dist/docs",
"docs:clean": "rm -rf dist/docs",
"docs:deploy": "yarn docs:clean && yarn docs:build && surge dist/docs --domain react-audio-viz.surge.sh",
"dev": "yarn docs:dev",
"build": "concurrently -r \"yarn lib:build\" \"yarn docs:build\"",
"deploy": "yarn docs:deploy"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettify && npm run test"
}
},
"engines": {
"node": ">= 8.11.0",
"npm": ">= 6.0.0"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFilesAfterEnv": [
"<rootDir>/src/lib/setupTests.ts"
],
"testMatch": [
"**/__tests__/*.(test|spec).(ts|tsx|js)"
]
},
"keywords": [
"Typescript",
"React",
"Parcel",
"audio visualization",
"music"
],
"dependencies": {
"resize-observer-polyfill": "^1.5.1"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@material-ui/core": "^4.8.2",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.6",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"bootstrap": "^4.4.1",
"concurrently": "^4.1.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"jest-extended": "^0.11.1",
"parcel-bundler": "^1.12.3",
"polished": "^3.4.2",
"prettier": "^1.17.0",
"rc-slider": "^8.7.1",
"react": "^16.0.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-color": "^2.17.3",
"react-dom": "^15.3.0 || ^16.0.0",
"react-github-btn": "^1.1.1",
"react-router-dom": "^5.1.2",
"react-select": "^3.0.8",
"react-switch": "^5.0.1",
"react-syntax-highlighter": "^12.2.1",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^6.1.2",
"snippet-highlight": "^1.0.2",
"styled-components": "^4.4.1",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.4"
}
}