-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy pathpackage.json
98 lines (98 loc) · 3.03 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": "@appbaseio/reactivesearch",
"version": "4.2.2",
"description": "A React UI components library for building search experirnences",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.es.js",
"js:next": "lib/index.es.js",
"sideEffects": false,
"files": [
"lib/",
"umd"
],
"scripts": {
"watch": "yarn build:commonjs -w && yarn build:es -w",
"build": "yarn build:commonjs && yarn build:es && yarn build:copy-types",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel --ignore __tests__ src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src/index.js --out-file lib/index.es.js",
"build:copy-types": "npx babel-node ./scripts/copy-types.js",
"build:umd": "cross-env BABEL_ENV=commonjs webpack --progress --mode=production --config webpack.config.umd.js",
"stats": "NODE_OPTIONS=--openssl-legacy-provider webpack --progress --mode=production --config webpack.config.umd.js --json > stats.json",
"version-upgrade": "NODE_OPTIONS=--openssl-legacy-provider nps upgrade -c ../../package-scripts.js",
"prepublishOnly": "yarn run build",
"postpublish": "yarn run version-upgrade",
"test": "jest",
"clear-cache-test": "jest --clearCache",
"typescript": "tsc -p tsconfig.json"
},
"jest": {
"rootDir": "src",
"testURL": "http://localhost/"
},
"repository": {
"type": "git",
"url": "https://github.com/appbaseio/reactivesearch.git"
},
"author": "metagrover",
"license": "Apache-2.0",
"dependencies": {
"@appbaseio/analytics": "^1.2.0-alpha.1",
"@appbaseio/reactivecore": "10.2.1",
"@appbaseio/rheostat": "^1.0.0-alpha.15",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"appbase-js": "^5.3.3",
"cross-env": "^5.2.0",
"dayjs": "^1.11.7",
"downshift": "^1.31.2",
"echarts": "^5.3.3",
"echarts-for-react": "^3.0.2",
"emotion-theming": "^10.0.27",
"hoist-non-react-statics": "^3.2.1",
"hotkeys-js": "^3.8.7",
"polished": "^1.9.3",
"prop-types": "^15.6.0",
"react-day-picker": "^7.0.5",
"react-redux": "^6.0.1",
"remarkable": "^2.0.1",
"url-search-params-polyfill": "^7.0.0",
"webpack-cli": "4.10.0",
"xss": "^1.0.11"
},
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15"
},
"devDependencies": {
"@emotion/jest": "11.7.1",
"@types/react": "^16.3.8",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.4",
"babel-loader": "^7.1.2",
"babel-plugin-emotion": "^10.0.33",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"brotli-webpack-plugin": "^0.5.0",
"compression-webpack-plugin": "^1.0.1",
"eslint-plugin-jest": "^21.12.2",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"jest": "^22.4.2",
"nps": "^5.9.5",
"path": "^0.12.7",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"react-test-renderer": "^18.2.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"webpack": "^4.18.0"
},
"resolutions": {
"@types/react": "16.3.7"
}
}