-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.51 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
{
"name": "@10up/elasticpress-react",
"version": "2.1.2",
"description": "React components for supercharging your headless WordPress website with ElasticPress.",
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com"
},
"keywords": [
"elasticpress",
"wordpress",
"search",
"elasticsearch"
],
"license": "GPL-2.0-only",
"repository": "10up/elasticpress-react",
"main": "dist/index.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle --jsx React.createElement --format cjs",
"start": "microbundle watch --jsx React.createElement --format cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:watch": "react-scripts test --env=jsdom"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@10up/babel-preset-default": "^1.0.3",
"@10up/eslint-config": "^2.1.1",
"@testing-library/dom": "^7.23.0",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.8",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/user-event": "^12.1.3",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-standard": "^4.0.1",
"fetch-mock-jest": "^1.3.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"jest": "^26.3.0",
"lint-staged": "^10.2.11",
"microbundle": "^0.12.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"whatwg-fetch": "^3.4.0"
},
"files": [
"dist"
],
"dependencies": {
"invariant": "^2.2.4",
"lodash.debounce": "^4.0.8",
"lodash.isarray": "^4.0.0",
"lodash.isobject": "^3.0.2",
"lodash.mapvalues": "^4.6.0"
}
}