forked from GetDKAN/data-catalog-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 5.29 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "@civicactions/data-catalog-components",
"version": "1.13.0",
"description": "React Components for Open Data Catalogs.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/getdkan/data-catalog-components.git"
},
"author": "CivicActions <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"css:watch": "sass --no-source-map src/theme/styles/index.scss dist/index.css -w",
"lib:watch": "babel src -d lib --watch",
"lib": "npm run clean && babel src -d lib && sass --no-source-map src/theme/styles/index.scss dist/index.css && cp -R src/styles/scss dist/",
"clean": "rm -rf lib && mkdir lib && rm -rf dist && mkdir dist",
"prepublish": "npm run lib",
"storybook": "NODE_PATH=src start-storybook -p 6006",
"deploy-storybook": "storybook-to-ghpages",
"lint": "eslint ./src",
"test": "jest --verbose",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve",
"docz:publish": "docz build && gh-pages -d ./docs"
},
"keywords": [
"react",
"react-component"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.19",
"@reach/router": "^1.3.3",
"@storybook/core": "^6.5.10",
"ansi-styles": "^6.1.0",
"axios": "^0.21.1",
"bootstrap": "^4.2.1",
"excerpts": "0.0.3",
"font-awesome": "^4.7.0",
"html-to-react": "^1.3.4",
"immutability-helper": "^3.0.2",
"lodash": "^4.17.15",
"prop-types": "^15.6.2",
"query-string": "^6.8.3",
"react-aria-modal": "^4.0.0",
"react-content-loader": "^6.0.1",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-js-pagination": "^3.0.2",
"react-loader-advanced": "^1.7.1",
"react-loading-spin": "^1.0.9",
"react-router": "^5.3.3",
"react-table": "^7.0.4",
"reactstrap": "^7.1.0",
"styled-components": "^5.0.1",
"swagger-ui-react": "^4.11.1",
"validator": "^12.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/code-frame": "^7.8.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.2",
"@storybook/addon-a11y": "^6.5.0-alpha.51",
"@storybook/addon-actions": "^6.5.0-alpha.51",
"@storybook/addon-backgrounds": "^6.5.0-alpha.51",
"@storybook/addon-docs": "^6.5.0-alpha.51",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.0-alpha.51",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-storysource": "^6.5.0-alpha.51",
"@storybook/addon-viewport": "^6.5.0-alpha.51",
"@storybook/addons": "^6.5.0-alpha.51",
"@storybook/builder-webpack5": "^6.5.0-alpha.51",
"@storybook/manager-webpack5": "^6.5.0-alpha.51",
"@storybook/react": "^6.5.0-alpha.51",
"@testing-library/dom": "^7.16.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.2.1",
"@testing-library/react-hooks": "^3.3.0",
"@testing-library/user-event": "^12.7.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^1.10.6",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"core-js": "^2.6.5",
"css-loader": "^2.1.0",
"docz": "^2.3.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.2.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"gatsby-plugin-sass": "^2.3.1",
"gh-pages": "^2.2.0",
"jest": "^24.9.0",
"prettier": "^1.16.0",
"react-router-dom": "^5.3.3",
"react-test-renderer": "^16.9.0",
"sass": "^1.54.4",
"sass-loader": "^7.2.0",
"url-loader": "^1.1.2"
},
"peerDependencies": {
"react": ">= ^17.0.2",
"react-dom": ">= ^17.0.2"
},
"files": [
"lib",
"dist"
]
}