-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.61 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
{
"name": "cota-streaming-ui",
"version": "1.0.0",
"description": "This application is dependent on being fed websocket data. The host/port for the websocket can be found in `public/config.[ENV.]js`",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development",
"test": "jest",
"test-watch": "jest --watch",
"dev": "webpack --mode development",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartcolumbusos/cota-streaming-ui.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smartcolumbusos/cota-streaming-ui/issues"
},
"homepage": "https://github.com/smartcolumbusos/cota-streaming-ui#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@gfx/zopfli": "^1.0.13",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^8.0.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.1.0",
"sass-loader": "^10.0.0",
"style-loader": "^0.23.1",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"kind-of": ">=6.0.3",
"node-forge": ">=0.10.0",
"yargs-parser": ">=13.1.2",
"serialize-javascript": ">=3.1.0"
},
"dependencies": {
"apisauce": "^2.1.1",
"identity-obj-proxy": "^3.0.0",
"leaflet": "^1.5.1",
"lodash": "^4.17.21",
"node-sass": "^6.0.0",
"minimist": ">=1.2.3",
"normalize.css": "^8.0.1",
"phoenix": "1.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-ga": "^2.6.0",
"react-leaflet": "^1.9.1",
"react-leaflet-rotatedmarker": "^0.1.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-select": "^3.0.4",
"redux": "^4.0.1",
"redux-saga": "1.0.4"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/test-helpers/shim.js",
"<rootDir>/test-helpers/test-start-point.js"
],
"moduleNameMapper": {
"\\.(css|scss|png)$": "identity-obj-proxy",
"blue-bus\\.svg": "<rootDir>/test-helpers/blue-svg.js",
"map-marker-easymile\\.svg": "<rootDir>/test-helpers/map-marker-easymile-svg.js",
"\\.(svg)$": "<rootDir>/test-helpers/mock-svg-string.js"
}
}
}