forked from appbaseio/searchbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.38 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
{
"name": "searchbase-packages",
"private": true,
"description": "Headless core + common utilities for search",
"workspaces": [
"packages/*",
"packages/searchbase/examples/*",
"packages/vue-searchbox/examples/*",
"packages/vue-searchbox/examples/by-usecases/*",
"packages/react-searchbox/examples/*",
"packages/react-searchbox/examples/by-usecases/*",
"packages/native/examples/*",
"site"
],
"scripts": {
"watch": "npm run watch --prefix packages/searchbase",
"vue": "npm run watch --prefix packages/vue-searchbox",
"js": "npm run dev --prefix packages/searchbox",
"react": "npm run start --prefix packages/react-searchbox",
"dev:vue": "concurrently --kill-others -n \"SEARCHBASE\",\"VUE\", -c \"green\",\"magenta\", \"npm run watch\" \"npm run vue\"",
"dev:js": "concurrently --kill-others -n \"SEARCHBASE\",\"JS\", -c \"green\",\"magenta\", \"npm run watch\" \"npm run js\"",
"dev:react": "concurrently --kill-others -n \"SEARCHBASE\",\"REACT\", -c \"green\",\"magenta\", \"npm run watch\" \"npm run react\"",
"deploy-site": "scripts/deploy-site.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appbaseio/searchbase.git"
},
"author": "kuldepsaxena155@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/appbaseio/searchbase/issues"
},
"homepage": "https://github.com/appbaseio/searchbase#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-polyfill": "^6.26.0",
"concurrently": "^5.0.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype-errors": "^4.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-prettier": "^3.1.0",
"flow-bin": "^0.105.2",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.4",
"prettier": "^1.18.2",
"typescript": "^4.0.2"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"keywords": [
"appbase",
"elasticsearch",
"search"
],
"dependencies": {
"jest-environment-jsdom": "24"
},
"engines": {
"node": ">=14.17.1"
}
}