-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.22 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@connexta/logviewer",
"author": "Codice",
"description": "UI for viewing the Karaf Logs in the Admin UI",
"version": "0.2.0",
"license": "LGPL-3.0",
"main": "index.js",
"engines": {
"node": ">=0.10.5"
},
"scripts": {
"start": "hotreloadify src/main/webapp/js/index.js --proxy=https://localhost:8993 --open",
"test": "globstar -- browserify -d ./src/test/js/*.js -o ./target/test.js && tap ./target/test.js",
"prebuild": "rimraf ./target && mkdirp ./target/webapp",
"build": "browserify src/main/webapp/js/index.js > ./target/webapp/bundle.js && cpx src/main/webapp/index.html target/webapp",
"clean": "ace clean"
},
"sideEffects": false,
"keywords": [
"log",
"viewer"
],
"repository": {
"type": "git",
"url": "https://github.com/codice/ddf.git"
},
"dependencies": {
"es6-promise": "3.2.1",
"isomorphic-fetch": "3.0.0",
"lodash.takewhile": "4.6.0",
"lodash.includes": "4.3.0",
"moment": "2.29.4",
"object-hash": "1.1.2",
"random-item": "1.0.0",
"react-redux": "6.0.0",
"react-visibility-sensor": "5.0.2",
"redux": "4.0.1",
"redux-thunk": "2.3.0"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"styled-components": ">=5"
},
"devDependencies": {
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babelify": "7.3.0",
"browserify": "16.2.3",
"cpx": "1.5.0",
"globstar": "1.0.0",
"hotreloadify": "0.0.5",
"mkdirp": "0.5.1",
"node-lessify": "0.1.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"rimraf": "3.0.0",
"styled-components": "5.1.0",
"tap": "5.7.2",
"tape": "4.5.1",
"@connexta/ace": "git+https://github.com/connexta/ace.git#f51c1b59ec73fea2c196cf5b59eaf4ad48dddcee"
},
"resolutions": {
"@connexta/eslint-plugin-connexta": "git+https://github.com/connexta/eslint-plugin-connexta.git#v0.0.2"
},
"browserify": {
"transform": [
"node-lessify",
[
"babelify",
{
"presets": [
"stage-0",
"es2015",
"react"
]
}
]
]
},
"files": [
"target/webapp/",
"src/main/resources"
]
}