-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
112 lines (112 loc) · 3.16 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
{
"name": "react-searchkit",
"version": "3.0.0",
"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 --transformIgnorePatterns /\"node_modules/(?!axios)/\"",
"eject": "react-scripts eject",
"lint": "eslint src/ --ext .js --max-warnings=0",
"format": "prettier --write \"src/**/*.js\""
},
"peerDependencies": {
"@babel/runtime": "^7.9.0",
"axios": "^1.7.7",
"lodash": "^4.17.0",
"qs": "^6.8.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-overridable": "^0.0.3",
"react-redux": "^7.2.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.11.0",
"@inveniosoftware/eslint-config-invenio": "^2.0.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"axios": "^1.7.7",
"axios-mock-adapter": "^1.18.0",
"cheerio": "1.0.0-rc.3",
"coveralls": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.0",
"expect": "^26.5.0",
"json": "^10.0.0",
"lodash": "^4.17.0",
"qs": "^6.8.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-overridable": "^0.0.3",
"react-redux": "^7.2.0",
"react-scripts": "^5.0.0",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.0",
"redux-thunk": "^2.3.0",
"rimraf": "^3.0.0",
"rollup": "^2.29.0",
"rollup-plugin-local-resolve": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^4.0.0",
"sass": "^1.50.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.0",
"util": "^0.12.5"
},
"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": ">=14.0.0"
}
}