forked from mmagr/gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.92 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "webpack-react",
"version": "0.0.1",
"description": "A Webpack sample project, configured for ES6 React and SASS",
"main": "index.js",
"scripts": {
"start": "http-server ./dist -p 3000",
"build": "webpack -p --config production.config.js --bail",
"watch": "webpack-dev-server --hot --progress --colors",
"lint": "./node_modules/.bin/eslint src/js/*",
"lint:watch": "gulp",
"lint:fix": "./node_modules/.bin/eslint src/js/* --fix",
"test": "./node_modules/.bin/codeceptjs --config=tests/acceptance/codecept.conf.js run --steps",
"test:clearDb": "./node_modules/.bin/codeceptjs --config=tests/acceptance/custom.conf.js run --steps",
"perfomaceTests": "tests/acceptance/performanceTests/runTest.sh",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"babel": {
"plugins": [
"react-hot-loader/babel",
"transform-object-rest-spread"
],
"presets": [
"env",
"react"
]
},
"repository": {
"type": "git",
"url": "ssh://<user>@gerrit.cpqd.com.br:29418/iot/middleware/gui/devicemanager"
},
"keywords": [
"webpack",
"react",
"ecmascript6",
"react-hot-loader",
"sass"
],
"author": "",
"license": "MIT",
"dependencies": {
"@casl/ability": "^2.5.1",
"@casl/react": "^0.8.1",
"@material-ui/core": "^1.4.0",
"ace-builds": "^1.3.3",
"alt": "^0.18.6",
"alt-container": "^1.1.1",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "~7",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chart.js": "^2.7.2",
"copy-webpack-plugin": "^4.5.2",
"create-react-class": "^15.6.3",
"css-loader": "^1.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"filepond": "^3.3.2",
"filepond-plugin-file-validate-size": "^2.0.0",
"filepond-plugin-file-validate-type": "^1.2.0",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"i18next": "14.0.1",
"i18next-browser-languagedetector": "^2.2.3",
"i18next-xhr-backend": "^1.5.1",
"jquery": "3.4.0",
"jquery-i18next": "^1.2.1",
"jquery-ui-dist": "1.12.1",
"jsx-loader": "^0.13.2",
"leaflet": "^1.3.4",
"leaflet.markercluster": "^1.4.1",
"material-ui": "^0.20.1",
"materialize-css": "^0.100.2",
"moment": "^2.22.2",
"node-libs-browser": "^2.1.0",
"node-sass": "~4.9",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-addons-css-transition-group": "15.6.2",
"react-breadcrumbs": "^2.1.6",
"react-chartjs-2": "^2.7.3",
"react-dom": "^16.4.1",
"react-dropzone": "^4.2.13",
"react-filepond": "^5.0.0",
"react-hot-loader": "^4.3.3",
"react-i18next": "^9.0.10",
"react-leaflet": "1.2.2",
"react-leaflet-div-icon": "^1.1.0",
"react-load-script": "0.0.6",
"react-paginate": "^5.2.3",
"react-resize-detector": "^3.0.1",
"react-reveal": "^1.2.2",
"react-router": "3.2",
"react-text-truncate": "^0.13.1",
"react-theme-provider": "^0.1.3",
"sass-loader": "^7.1.0",
"sha1": "^1.1.1",
"socket.io-client": "^2.1.1",
"style-loader": "^0.21.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.4",
"snyk": "^1.167.0"
},
"devDependencies": {
"child_process": "^1.0.2",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"gulp": "^3.9.1",
"allure-commandline": "^2.9.0",
"codeceptjs": "^2.0.8",
"puppeteer": "^1.13.0",
"sync-request": "^6.1.0",
"async-mqtt": "^2.2.1",
"mqtt": "^2.18.8"
},
"snyk": true
}