-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "splunk-slack-alerts",
"version": "2.3.1",
"description": "Slack alert action for Splunk Enterprise",
"private": true,
"splunk": {
"appName": "slack_alerts",
"appSource": "src/app"
},
"repository": "git@github.com:ziegfried/splunk-slack-alerts.git",
"author": "Siegfried Puchbauer <spuchbauer@splunk.com>",
"license": "Apache-2.0",
"dependencies": {
"@splunk/react-page": "^6.0.2",
"@splunk/react-toast-notifications": "^0.11.0",
"@splunk/react-ui": "^4.14.0",
"react": "^16",
"react-dom": "^16",
"styled-components": "^4"
},
"devDependencies": {
"@babel/core": "^7",
"@splunk/babel-preset": "^3.0.0",
"@splunk/webpack-configs": "^5.0.0",
"babel-loader": "^8.0.4",
"onchange": "^3.2.1",
"prettier": "^2.0.5",
"splunk-slap": "^0.0.6",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-livereload-plugin": "^2.1.1",
"webpack-merge": "^4.1.3"
},
"scripts": {
"setup": "yarn install && yarn build && yarn symlink",
"build": "slap stage",
"build:pages": "webpack --config=src/ui/webpack.config.js --bail",
"slap:post-stage": "yarn build:pages",
"symlink": "slap symlink",
"package": "slap package --prod",
"pkg": "yarn package",
"rebuild": "echo \"Rebuilding...\" && slap stage --skip-clean",
"start": "yarn build && onchange src/** -- slap stage",
"test": "python -m unittest discover -s src/app/bin -p '*_tests.py' -v",
"test:watch": "onchange src/app/bin/** -- yarn test"
}
}