peer-calls/package.json

129 lines
4.0 KiB
JSON

{
"name": "peer-calls",
"version": "2.0.12",
"description": "Group peer to peer video calls for anybody.",
"repository": "https://github.com/jeremija/peer-calls",
"main": "lib/index.js",
"bin": {
"peercalls": "./lib/index.js"
},
"scripts": {
"start": "node lib/index.js",
"start:server": "nodemon -ignore build/ --ignore lib/client lib/index.js",
"start:watch": "chastifol [ npm run ts:watch ] [ npm run js:watch ] [ npm run css:watch ] [ npm run start:server ]",
"watch": "",
"prepublishOnly": "npm run build",
"build": "npm run css && npm run js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"js": "browserify -t babelify ./lib/client/index.js -o ./build/index.js",
"js:watch": "watchify -d -v -t babelify ./lib/client/index.js -o ./build/index.js",
"css": "node-sass ./src/scss/style.scss -o ./build/",
"css:watch": "npm run css && node-sass --watch ./src/scss/style.scss -o ./build/",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ci": "npm run lint && npm run test:coverage && npm run build",
"ts:watch": "tsc --build . --watch --preserveWatchOutput",
"ts": "tsc --build ."
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7",
"ie >= 11"
]
}
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"author": "Jerko Steiner",
"license": "MIT",
"dependencies": {
"bluebird": "^3.3.4",
"classnames": "^2.2.5",
"config": "^3.0.0",
"express": "^4.13.3",
"prop-types": "^15.5.10",
"pug": "^2.0.0-rc.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"react-transition-group": "^1.2.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "^2.2.0",
"screenfull": "^3.3.3",
"seamless-immutable": "^7.1.2",
"simple-peer": "^9.1.2",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"underscore": "^1.8.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.1",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@types/bluebird": "^3.5.29",
"@types/config": "0.0.36",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/redux": "^3.6.0",
"@types/redux-logger": "^3.0.7",
"@types/redux-mock-store": "^1.0.1",
"@types/simple-peer": "^6.1.6",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/supertest": "^2.0.8",
"@types/underscore": "^1.9.3",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babelify": "^10.0.0",
"chastifol": "^4.1.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.8.0",
"node-sass": "^4.13.0",
"nodemon": "^1.18.8",
"redux-mock-store": "^1.2.3",
"supertest": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.0",
"typescript": "^3.6.4",
"uglify-js": "^3.4.9",
"watchify": "^3.11.1"
}
}