jitsi-meet-electron/package.json

89 lines
2.6 KiB
JSON
Raw Normal View History

2016-12-12 21:46:47 +01:00
{
"name": "jitsi-meet-electron",
"version": "0.0.0",
"description": "Electron application for Jitsi Meet",
"main": "build/main.js",
2016-12-28 17:25:08 +01:00
"productName": "Jitsi Meet",
2016-12-12 21:46:47 +01:00
"scripts": {
"start": "webpack --config ./webpack.config.js --mode development && electron ./build/main.js",
"clean": "rm -rf node_modules",
2018-05-24 17:02:26 +02:00
"lint": "eslint . && flow",
"pack": "webpack --config ./webpack.config.js --mode production && electron-packager .",
"postinstall": "electron-rebuild",
"validate": "npm ls"
2016-12-12 21:46:47 +01:00
},
"pre-commit": [
2018-05-24 17:02:26 +02:00
"lint"
2016-12-12 21:46:47 +01:00
],
"repository": {
"type": "git",
"url": "git://github.com/jitsi/jitsi-meet-electron"
},
"keywords": [
"jingle",
"webrtc",
"xmpp",
"electron",
"jitsi-meet"
],
"author": "",
"readmeFilename": "README.md",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/avatar": "11.0.1",
2018-05-26 23:51:12 +02:00
"@atlaskit/button": "7.2.5",
"@atlaskit/css-reset": "2.0.2",
2018-06-08 10:51:58 +02:00
"@atlaskit/droplist": "6.0.1",
2018-05-26 23:51:12 +02:00
"@atlaskit/field-text": "5.1.0",
2018-06-08 10:51:58 +02:00
"@atlaskit/icon": "12.0.1",
"@atlaskit/navigation": "32.0.2",
"@atlaskit/page": "7.0.1",
"@atlaskit/spinner": "8.0.0",
2018-05-26 23:51:12 +02:00
"@atlaskit/theme": "3.2.2",
"electron-debug": "2.0.0",
"electron-is-dev": "0.3.0",
2018-06-20 21:38:53 +02:00
"electron-window-state": "4.1.1",
2018-06-03 04:36:16 +02:00
"history": "4.7.2",
"jitsi-meet-electron-utils": "github:jitsi/jitsi-meet-electron-utils#1972c3bf0884ace68eb496894dabae593d6dbf49",
"js-md5": "0.7.3",
"mousetrap": "1.6.2",
"react": "16.3.2",
2018-05-26 23:51:12 +02:00
"react-dom": "16.3.2",
2018-06-03 04:36:16 +02:00
"react-redux": "5.0.7",
"react-router-redux": "5.0.0-alpha.9",
"redux": "4.0.0",
"redux-logger": "3.0.6",
"redux-persist": "5.10.0",
"redux-persist-electron-storage": "1.1.2",
2018-05-26 23:51:12 +02:00
"styled-components": "3.3.0"
2016-12-12 21:46:47 +01:00
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
2018-06-16 07:59:24 +02:00
"babel-plugin-inline-react-svg": "0.5.2",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
2018-06-03 04:36:16 +02:00
"babel-preset-stage-1": "6.24.1",
2018-05-26 23:51:12 +02:00
"css-loader": "0.28.11",
"devtron": "1.4.0",
2018-06-21 22:05:30 +02:00
"electron": "2.0.3",
2018-05-08 20:58:26 +02:00
"electron-packager": "12.0.2",
"electron-react-devtools": "0.5.3",
2018-05-08 20:58:26 +02:00
"electron-rebuild": "1.7.3",
"eslint": "4.12.1",
"eslint-config-jitsi": "github:jitsi/eslint-config-jitsi#v0.1.0",
"eslint-plugin-flowtype": "2.46.3",
"eslint-plugin-import": "2.11.0",
2018-05-08 20:58:26 +02:00
"eslint-plugin-jsdoc": "3.2.0",
"eslint-plugin-react": "7.7.0",
2018-05-24 16:35:26 +02:00
"flow-bin": "0.72.0",
"html-webpack-plugin": "3.2.0",
"precommit-hook": "3.0.0",
2018-05-26 23:51:12 +02:00
"style-loader": "0.21.0",
2018-06-16 07:59:24 +02:00
"svg-inline-loader": "0.8.0",
"webpack": "4.8.1",
"webpack-cli": "2.1.3"
2016-12-12 21:46:47 +01:00
}
}