99 lines
2.9 KiB
JSON
99 lines
2.9 KiB
JSON
{
|
|
"name": "peer-calls",
|
|
"version": "2.0.7",
|
|
"description": "Group peer to peer video calls for anybody.",
|
|
"repository": "https://github.com/jeremija/peer-calls",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"peercalls": "./src/index.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"start:server": "nodemon src/index.js --ignore build/ --ignore src/client",
|
|
"start:watch": "chastifol [ 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 ./src/client/index.js -o ./build/index.js",
|
|
"js:watch": "watchify -d -v -t babelify ./src/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"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"es2015",
|
|
"es2016",
|
|
"react"
|
|
],
|
|
"plugins": [
|
|
"transform-object-rest-spread",
|
|
"transform-class-properties"
|
|
]
|
|
},
|
|
"author": "Jerko Steiner",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"bluebird": "^3.3.4",
|
|
"classnames": "^2.2.5",
|
|
"config": "^1.26.1",
|
|
"express": "^4.13.3",
|
|
"prop-types": "^15.5.10",
|
|
"pug": "^2.0.0-rc.2",
|
|
"react": "^15.5.4",
|
|
"react-dom": "^15.5.4",
|
|
"react-redux": "^5.0.5",
|
|
"react-transition-group": "^1.1.3",
|
|
"redux": "^3.6.0",
|
|
"redux-logger": "^3.0.6",
|
|
"redux-promise-middleware": "^4.2.0",
|
|
"redux-thunk": "^2.2.0",
|
|
"seamless-immutable": "^7.1.2",
|
|
"simple-peer": "^8.1.0",
|
|
"socket.io": "^2.1.1",
|
|
"socket.io-client": "^2.1.1",
|
|
"underscore": "^1.8.3",
|
|
"uuid": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^7.2.3",
|
|
"babel-jest": "^20.0.3",
|
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
"babel-plugin-transform-object-rest-spread": "^6.23.0",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-preset-es2016": "^6.24.1",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babelify": "^7.3.0",
|
|
"chastifol": "^4.1.0",
|
|
"eslint": "^3.19.0",
|
|
"eslint-config-standard": "^10.2.1",
|
|
"eslint-config-standard-react": "^5.0.0",
|
|
"eslint-plugin-import": "^2.3.0",
|
|
"eslint-plugin-node": "^5.0.0",
|
|
"eslint-plugin-promise": "^3.5.0",
|
|
"eslint-plugin-react": "^7.0.1",
|
|
"eslint-plugin-standard": "^3.0.1",
|
|
"jest-cli": "^23.6.0",
|
|
"node-sass": "^4.5.3",
|
|
"nodemon": "^1.11.0",
|
|
"react-addons-test-utils": "^15.5.1",
|
|
"redux-mock-store": "^1.2.3",
|
|
"supertest": "^3.0.0",
|
|
"uglify-js": "^2.6.2",
|
|
"watchify": "^3.9.0"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
".*": "<rootDir>/node_modules/babel-jest"
|
|
},
|
|
"modulePathIgnorePatterns": [
|
|
"<rootDir>/node_modules/"
|
|
]
|
|
}
|
|
}
|