mattermost-desktop/package.json

79 lines
3.4 KiB
JSON
Raw Normal View History

2015-10-06 06:35:26 -07:00
{
2016-10-19 06:57:06 -07:00
"name": "mattermost-desktop",
"productName": "Mattermost",
2018-11-27 05:27:09 -08:00
"version": "4.3.0-develop",
2016-09-19 06:32:59 -07:00
"description": "Mattermost",
2015-10-06 06:35:26 -07:00
"main": "main.js",
2017-06-29 07:53:05 -07:00
"author": "Mattermost, Inc. <feedback@mattermost.com>",
2016-06-05 08:45:30 -07:00
"license": "Apache-2.0",
2016-02-20 07:08:38 -08:00
"engines": {
"node": ">=4.2.0"
},
2016-08-20 03:44:31 -07:00
"repository": {
"type": "git",
"url": "git://github.com/mattermost/desktop.git"
},
"scripts": {
2018-03-28 08:14:00 -07:00
"postinstall": "electron-builder install-app-deps && npm run extract-dict",
"extract-dict": "node scripts/extract_dict.js src/node_modules/simple-spellchecker/dict",
2016-12-21 07:07:24 -08:00
"build": "npm-run-all build:*",
2018-05-25 07:12:52 -07:00
"build:main": "webpack-cli --bail --config webpack.config.main.js",
"build:renderer": "webpack-cli --bail --config webpack.config.renderer.js",
2017-03-06 06:37:35 -08:00
"start": "electron src --disable-dev-mode",
"storybook": "start-storybook -p 9001 -c src/.storybook",
2017-09-07 15:59:17 -07:00
"clean": "rm -rf release/ node_modules/ src/node_modules/ && find src -name '*_bundle.js' | xargs rm",
2017-03-04 07:58:26 -08:00
"watch": "run-p watch:*",
"watch:main": "node scripts/watch_main_and_preload.js",
2017-03-04 07:27:40 -08:00
"watch:renderer": "webpack-dev-server --config webpack.config.renderer.js",
2017-09-07 11:57:27 -07:00
"test": "npm-run-all test:* lint:*",
"test:app": "cross-env NODE_ENV=production npm run build && mocha -r @babel/register --reporter mocha-circleci-reporter --recursive test/specs",
"package:all": "cross-env NODE_ENV=production npm-run-all check-build-config package:windows package:mac package:linux",
2018-11-19 07:20:52 -08:00
"package:windows": "cross-env NODE_ENV=production npm-run-all check-build-config build && build --win --x64 --ia32 --publish=never",
"package:mac": "cross-env NODE_ENV=production npm-run-all check-build-config build && build --mac --publish=never",
2018-06-15 06:21:17 -07:00
"package:linux": "cross-env NODE_ENV=production npm-run-all check-build-config build && build --linux --x64 --ia32 --publish=never",
2018-02-21 11:15:56 -08:00
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern node_modules --ext .js --ext .jsx .",
"fix:js": "eslint --ignore-path .gitignore --ignore-pattern node_modules --quiet --ext .js --ext .jsx . --fix",
"check-build-config": "node -r @babel/register scripts/check_build_config.js"
},
2015-10-23 07:56:53 -07:00
"devDependencies": {
2018-12-04 06:48:32 -08:00
"7zip-bin": "^4.1.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
2018-12-04 06:48:32 -08:00
"@storybook/addon-actions": "^4.0.11",
"@storybook/react": "^4.0.11",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
2018-12-04 06:48:32 -08:00
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
2016-12-20 06:53:20 -08:00
"devtron": "^1.4.0",
"electron": "^5.0.4",
"electron-builder": "^20.44.4",
2018-02-21 03:19:36 -08:00
"electron-connect": "^0.6.3",
2018-12-04 06:48:32 -08:00
"eslint": "^5.9.0",
"eslint-config-mattermost": "github:mattermost/eslint-config-mattermost",
"eslint-plugin-cypress": "^2.1.2",
2019-03-12 07:31:45 -07:00
"eslint-plugin-eslint-comments": "^3.1.1",
2018-12-04 06:48:32 -08:00
"eslint-plugin-header": "^2.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
2018-05-29 08:25:06 -07:00
"mocha": "^5.2.0",
"mocha-circleci-reporter": "0.0.3",
2018-12-04 06:48:32 -08:00
"npm-run-all": "^4.1.5",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"spectron": "^6.0.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
2018-12-04 06:48:32 -08:00
"webpack": "^4.27.0",
"webpack-cli": "^3.1.2",
2019-01-07 06:25:14 -08:00
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.4"
2015-10-23 07:56:53 -07:00
}
2015-10-06 06:35:26 -07:00
}