This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.47 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
{
"name": "discovery_ui",
"version": "2.0.0",
"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.0.0",
"react": "~16.8.6",
"react-dom": "~16.8.6",
"react-hamburger-button": "0.0.1",
"react-hamburger-menu": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@gfx/zopfli": "^1.0.14",
"babel-loader": "^8.0.6",
"compression-webpack-plugin": "^3.0.1",
"copy-webpack-plugin": "^5.1.1",
"create-react-component-folder": "^0.3.7",
"css-loader": "^1.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^6.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"postcss-scss": "^2.0.0",
"robotstxt-webpack-plugin": "^7.0.0",
"sass-loader": "^10.0.0",
"standard": "^16.0.3",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.1",
"webpack-subresource-integrity": "^1.4.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"
}
}