44 lines
1.4 KiB
JSON
44 lines
1.4 KiB
JSON
{
|
|
"name": "noice-cast-receiver",
|
|
"description": "CAF custom receiver implementation for playing Noice on Cast enabled devices",
|
|
"repository": "git@github.com:ashutoshgngwr/noice.git",
|
|
"author": "Ashutosh Gangwar <ashutoshgngwr@gmail.com>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently \"yarn:watch-ts\" \"yarn:serve\"",
|
|
"watch-ts": "tsc --noEmit --watch",
|
|
"serve": "parcel index.html",
|
|
"build": "parcel build index.html",
|
|
"lint": "eslint . --ext .ts",
|
|
"test:single": "jest --config jest.json",
|
|
"test": "yarn test:single --watchAll"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.15.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
"@babel/preset-env": "^7.15.0",
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
"@tsconfig/recommended": "^1.0.1",
|
|
"@types/chromecast-caf-receiver": "^6.0.5",
|
|
"@types/howler": "^2.2.3",
|
|
"@types/jest": "^27.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^2.30.0",
|
|
"@typescript-eslint/parser": "^2.30.0",
|
|
"babel-jest": "^27.1.0",
|
|
"concurrently": "^6.2.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"jest": "^27.1.0",
|
|
"parcel-bundler": "^1.12.5",
|
|
"parcel-plugin-svg-sprite": "^1.4.1",
|
|
"prettier": "^2.3.2",
|
|
"sass": "^1.38.2",
|
|
"typescript": "^4.4.2"
|
|
},
|
|
"dependencies": {
|
|
"howler": "^2.2.3",
|
|
"normalize.css": "^8.0.1"
|
|
}
|
|
}
|