-
Notifications
You must be signed in to change notification settings - Fork 469
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.55 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.55 KB
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
{
"name": "@appbaseio/reactivesearch-vue",
"version": "1.28.0",
"private": false,
"main": "dist/cjs/index.js",
"jsnext:main": "dist/es/index.js",
"module": "dist/es/index.js",
"description": "A Vue UI components library for building search experiences",
"keywords": [
"appbase",
"elasticsearch",
"search"
],
"repository": {
"type": "git",
"url": "https://github.com/appbaseio/reactivesearch.git"
},
"author": "Kuldeep Saxena <kuldepsaxena155@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"watch": "nps watch",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"start": "nps",
"pretest": "nps build",
"test": "nps test",
"clear-jest-cache": "jest --clearCache",
"precommit": "lint-staged",
"prepare": "npm start validate",
"version-upgrade": "nps upgrade-vue -c ../../package-scripts.js",
"postpublish": "yarn run version-upgrade"
},
"files": [
"dist"
],
"sideEffects": false,
"dependencies": {
"@appbaseio/reactivecore": "9.14.4",
"@appbaseio/vue-emotion": "0.4.4",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"appbase-js": "^5.0.0",
"compute-scroll-into-view": "^1.0.11",
"emotion": "9.2.12",
"hotkeys-js": "^3.8.7",
"polished": "^2.2.0",
"redux": "^4.0.0",
"url-search-params-polyfill": "^7.0.0",
"vue-highlight-words": "^1.2.0",
"vue-no-ssr": "^1.1.0",
"vue-slider-component": "^3.2.15",
"vue-types": "^1.3.3"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-stage-2": "^7.0.0",
"@emotion/jest": "^11.9.0",
"@vue/babel-preset-jsx": "^1.1.0",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/test-utils": "^1.3.0",
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-vue": "^4.7.1",
"jest-serializer-vue": "^2.0.2",
"jest-vue-emotion": "^1.0.0",
"nps": "^5.9.3",
"nps-utils": "^1.7.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"vue-eslint-parser": "^3.2.2"
}
}