forked from splunk/github_app_for_splunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.04 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "github_app_for_splunk",
"version": "X.Y.Z",
"description": "Github App for Splunk",
"license": "MIT",
"author": "Splunk",
"contributors": [
"Doug Erkkila <derkkila@splunk.com> (https://www.splunk.com)",
"Bassem Dghaidi <stump@example.com> (https://www.github.com)"
],
"private": true,
"splunk": {
"appName": "github_app_for_splunk",
"appSource": "github_app_for_splunk"
},
"scripts": {
"build": "lerna run build",
"format": "git ls-files | grep -E \"\\.(jsx?|css)$\" | xargs prettier --write",
"format:verify": "git ls-files | grep -E \"\\.(jsx?|css)$\" | xargs prettier --list-different",
"lint": "lerna run lint --no-sort",
"setup": "yarn && lerna run build",
"start": "lerna run start --stream --no-sort --concurrency 100",
"test": "lerna run test --stream --no-sort",
"setup": "yarn install && yarn build && yarn symlink",
"build2": "slap stage",
"build:pages": "date",
"slap:post-stage": "yarn build:pages",
"symlink": "slap symlink",
"package": "slap package --prod",
"pkg": "yarn package",
"rebuild": "echo \"Rebuilding...\" && slap stage --skip-clean",
"start2": "yarn build && onchange src/** -- slap stage",
"test2": "python -m unittest discover -s src/app/bin -p '*_tests.py' -v",
"test:watch": "onchange src/app/bin/** -- yarn test"
},
"dependencies": {
"@splunk/react-page": "^3.0.0",
"@splunk/react-toast-notifications": "^0.7.0",
"@splunk/react-ui": "^2",
"react": "^16",
"react-dom": "^16",
"styled-components": "^4"
},
"devDependencies": {
"lerna": "^2.9.0",
"prettier": "^2.0.5",
"@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"
},
"workspaces": [
"output/*"
],
"engines": {
"node": ">=8"
}
}