forked from inveniosoftware/react-searchkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.09 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
{
"name": "react-searchkit",
"version": "1.0.0-alpha.15",
"description": "React components to build your search UI application",
"main": "dist/cjs/index.js",
"browser": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"start": "react-scripts start",
"build": "rimraf dist && NODE_ENV=production rollup -c",
"edit-linked-package": "json -I -f ./dist/package.json -e 'this.module=\"esm/index.js\", this.main=\"cjs/index.js\"' ",
"prelink-dist": "cp package.json ./dist && npm run edit-linked-package",
"link-dist": "cd dist && npm link",
"postlink-dist": "cd dist && rm -rf node_modules",
"unlink-dist": "cd dist && npm unlink && rm package*",
"watch": "NODE_ENV=development rollup --watch -c",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js"
},
"dependencies": {},
"peerDependencies": {
"axios": "^0.19.2",
"lodash": "^4.17.15",
"qs": "^6.8.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-overridable": "^0.0.3",
"react-redux": "^7.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.0",
"@babel/runtime": "^7.9.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"axios": "^0.19.2",
"axios-mock-adapter": "^1.18.2",
"coveralls": "^3.0.7",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"expect": "^26.5.3",
"json": "^10.0.0",
"lodash": "^4.17.20",
"node-sass": "^4.14.0",
"qs": "^6.8.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-overridable": "^0.0.3",
"react-redux": "^7.2.1",
"react-scripts": "^3.4.3",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"rimraf": "^3.0.0",
"rollup": "^2.29.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^3.1.8",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^1.3.1"
},
"author": {
"name": "CERN",
"email": "[email protected]"
},
"homepage": "https://inveniosoftware.github.io/react-searchkit/",
"bugs": {
"url": "https://github.com/inveniosoftware/react-searchkit/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/inveniosoftware/react-searchkit.git"
},
"keywords": [
"react",
"react-component",
"react-searchkit",
"search",
"react search"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}