* Add debug-dist and debug-deploy build targets * Fix typos in documentation for new targets Co-Authored-By: Jesse Hallam <jesse.hallam@gmail.com>
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"name": "webapp",
|
|
"version": "0.0.1",
|
|
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"build": "webpack --mode=production",
|
|
"debug": "webpack --mode=none",
|
|
"lint": "eslint --ignore-pattern node_modules --ignore-pattern dist --ext .js --ext .jsx . --quiet",
|
|
"fix": "eslint --ignore-pattern node_modules --ignore-pattern dist --ext .js --ext .jsx . --quiet --fix",
|
|
"test": "jest --forceExit --detectOpenHandles --verbose"
|
|
},
|
|
"author": "",
|
|
"license": "",
|
|
"devDependencies": {
|
|
"@babel/cli": "7.4.4",
|
|
"@babel/core": "7.4.5",
|
|
"@babel/plugin-proposal-class-properties": "7.4.4",
|
|
"@babel/plugin-syntax-dynamic-import": "7.2.0",
|
|
"@babel/polyfill": "7.4.4",
|
|
"@babel/preset-env": "7.4.5",
|
|
"@babel/preset-react": "7.0.0",
|
|
"@babel/runtime": "7.4.5",
|
|
"babel-eslint": "10.0.2",
|
|
"babel-loader": "8.0.6",
|
|
"eslint": "6.0.1",
|
|
"eslint-import-resolver-webpack": "0.11.1",
|
|
"eslint-plugin-import": "2.18.0",
|
|
"eslint-plugin-react": "7.14.2",
|
|
"file-loader": "4.0.0",
|
|
"jest": "^24.8.0",
|
|
"webpack": "4.35.0",
|
|
"webpack-cli": "3.3.5"
|
|
},
|
|
"dependencies": {
|
|
"react": "16.8.6",
|
|
"react-redux": "5.0.7",
|
|
"redux": "4.0.1"
|
|
}
|
|
}
|