-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 3.77 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
{
"name": "react-search-panel",
"version": "1.0.9",
"description": "An expandable search panel React component where results can be displayed as links, checkboxes, or radio buttons, with optional chips.",
"author": "Jeremy Davidson",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremydavidson/react-search-panel.git"
},
"bugs": {
"url": "https://github.com/jeremydavidson/react-search-panel/issues"
},
"tags": [
"react-search-panel",
"react",
"react-component",
"material-design",
"google",
"search",
"search-bar",
"search-panel",
"expandable",
"multiple choice",
"radio-button",
"checkbox",
"links"
],
"keywords": [
"react-search-panel",
"react",
"react-component",
"material-design",
"google",
"search",
"search-bar",
"search-panel",
"expandable",
"multiple choice",
"radio-button",
"checkbox",
"links"
],
"scripts": {
"build": "npx rollup -c",
"doc": "typedoc --readme typedoc.md --out docs/doc",
"start": "npx rollup -c --watch",
"prepare": "run-s build",
"test": "jest",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "jest --watchAll",
"predeploy": "cp README.md docs && cp typedoc.md docs && cp _config.yml docs && cp assets/react-search-panel-demo.gif docs && npm run doc && npm run build-storybook && cd example && npm run build",
"deploy": "gh-pages -d docs -t true",
"build-storybook": "build-storybook -o docs/storybook",
"storybook": "start-storybook -p 6006"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@storybook/addon-actions": "^6.0.20",
"@storybook/addon-essentials": "^6.0.20",
"@storybook/addon-links": "^6.0.20",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.20",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.3",
"@types/node": "^12.12.38",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"emotion": "^10.0.27",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"jest": "^26.4.2",
"msw": "^0.20.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-cool-onclickoutside": "^1.5.5",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-scripts": "^3.4.3",
"react-use-keypress": "^1.0.1",
"rollup": "^2.26.10",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.3.0",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"files": [
"dist"
]
}