-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.57 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@dutchsec/cyberborg",
"version": "1.0.6",
"description": "Cyberborg",
"author": "DutchSec",
"homepage": "https://dutchsec.com/",
"copyright": "Copyright 2018 DutchSec",
"license": "",
"private": true,
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.109",
"@types/moment": "^2.13.0",
"@types/node": "^10.1.2",
"@types/react": "^16.3.14",
"@types/react-redux": "^6.0.0",
"@types/react-router": "^4.0.25",
"copy-webpack-plugin": "^4.5.1",
"css-hot-loader": "^1.3.9",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"git-describe": "^4.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "3.2.0",
"jest": "^22.4.4",
"node-sass": "^4.9.0",
"sass-loader": "^6.0.7",
"source-list-map": "2.0.0",
"style-loader": "^0.20.3",
"url-loader": "0.6.2",
"webpack": "4.8.3",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "3.1.4",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"@coreui/coreui": "^2.0.1",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
"@coreui/icons": "^0.1.1",
"@coreui/react": "^2.0.0-beta.3",
"awesome-typescript-loader": "^5.0.0",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.1.1",
"chart.js": "^2.7.2",
"classnames": "^2.2.5",
"dotenv": "^5.0.1",
"express-ws": "^3.0.0",
"history": "4.7.2",
"i18n-iso-countries": "^3.6.2",
"i18next": "8.4.3",
"i18next-browser-languagedetector": "^2.2.0",
"i18next-xhr-backend": "^1.5.1",
"intl-messageformat": "1.2.0",
"intl-relativeformat": "1.2.0",
"jquery": "^3.3.1",
"jss": "^9.8.1",
"lodash": "^4.17.10",
"lodash.throttle": "^4.1.1",
"moment": "^2.22.1",
"net": "^1.0.2",
"node-pty": "^0.7.4",
"prop-types": "^15.6.1",
"query-string": "^6.0.0",
"react": "^16.3.2",
"react-bootstrap": "^0.32.1",
"react-chartjs-2": "^2.7.2",
"react-dom": "^16.3.2",
"react-form-with-constraints": "^0.7.0",
"react-i18next": "^7.5.1",
"react-images-uploader": "^1.2.0-rc1",
"react-intl": "^2.4.0",
"react-loadable": "^5.4.0",
"react-loaders": "^3.0.1",
"react-mustache": "^0.1.5",
"react-password-strength": "^2.3.1",
"react-prop-types": "^0.4.0",
"react-redux": "^5.0.6",
"react-redux-form": "^1.14.1",
"react-resizable": "^1.7.5",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"react-test-renderer": "^16.3.2",
"react-transition-group": "^2.3.1",
"reactstrap": "^5.0.0",
"reconnecting-websocket": "^4.0.0-rc3",
"redux": "^3.7.2",
"redux-file-upload": "0.0.19",
"redux-promise": "^0.5.3",
"reselect": "^3.0.1",
"simple-line-icons": "^2.4.1",
"ts-action": "^6.0.2",
"typescript": "^2.8.3",
"url-search-params-polyfill": "^3.0.0",
"xterm": "^3.4.1"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --progress --colors --inline --port 8099 --env.dev --mode development",
"build": "webpack --config webpack.prod.js --progress --env.prod --mode production",
"stats": "webpack --config webpack.dev.js --colors --inline --port 8099 --env.dev --mode development --profile --json --display none > stats.json",
"analyze": "webpack-bundle-analyzer stats.json",
"clean": "rimraf ./build",
"test": "jest --config=jest.config.json",
"test:watch": "jest --watch --config=jest.config.json"
}
}