forked from UrbanOS-Examples/discovery_ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.86 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
{
"name": "discovery_ui",
"version": "2.1.48",
"description": "UI for dataset discovery",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/smartcolumbusos/discovery_ui.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smartcolumbusos/discovery_ui/issues"
},
"browserslist": [
"last 2 version",
"> 1%"
],
"homepage": "https://github.com/smartcolumbusos/discovery_ui#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-brands-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@smartcitiesdata/react-discovery-ui": "2.1.42",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"buffer": "^6.0.3",
"definitions": "0.0.2",
"immutable": "^3.8.2",
"postcss": "^8.4.21",
"react": "~16.8.6",
"react-dom": "~16.8.6",
"react-helmet": "^6.1.0",
"stream-browserify": "^3.0.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/plugin-proposal-do-expressions": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@gfx/zopfli": "^1.0.15",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"assert": "^2.0.0",
"babel-loader": "^8.3.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"create-react-component-folder": "^0.3.7",
"css-loader": "^6.7.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.1",
"postcss-scss": "^4.0.6",
"process": "^0.11.10",
"robotstxt-webpack-plugin": "^8.0.0",
"sass": "^1.58.0",
"sass-loader": "^10.4.1",
"standard": "^17.0.0",
"style-loader": "^1.3.0",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-subresource-integrity": "^5.1.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/test-helpers/test-start-point.js"
],
"moduleNameMapper": {
".+\\.(jpg|jpeg|png|gif)$": "<rootDir>/test-helpers/image-mock.js",
"\\.(css|scss)$": "identity-obj-proxy",
"\\.(svg)$": "<rootDir>/test-helpers/mock-svg-string.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/"
]
},
"scripts": {
"build": "NODE_OPTIONS=--max_old_space_size=4096 webpack --mode production",
"start": "webpack-dev-server --mode development",
"lint": "standard --fix",
"test": "jest"
}
}