-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.91 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": "@civicactions/data-catalog-services",
"version": "1.5.0",
"description": "Functions and React components to connect to the DKAN api.",
"main": "lib/index.js",
"scripts": {
"lib:watch": "babel src -d lib --watch",
"lib": "npm run clean && babel src -d lib",
"clean": "rm -rf lib && mkdir lib",
"prepublish": "npm run lib",
"lint": "eslint ./src",
"test": "jest --verbose",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage"
},
"author": "CivicActions <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.21.2",
"immutability-helper": "^3.0.2",
"lodash": "^4.17.21",
"prop-types": "^15.6.2",
"qs": "^6.10.1",
"query-string": "^6.14.0",
"validator": "^12.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/code-frame": "^7.12.13",
"@babel/core": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-proposal-do-expressions": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.12.13",
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.17",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@babel/runtime": "^7.12.18",
"@testing-library/dom": "^7.29.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^10.2.1",
"@testing-library/react-hooks": "^3.3.0",
"@testing-library/user-event": "^12.7.2",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.0",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.24.1",
"core-js": "^2.6.5",
"css-loader": "^2.1.0",
"gh-pages": "^2.2.0",
"jest": "26.6.0",
"prettier": "^1.16.0",
"react-scripts": "^4.0.3",
"react-test-renderer": "^17.0.2",
"url-loader": "^1.1.2"
},
"eslintConfig": {
"extends": "react-app"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"lib",
"dist"
]
}