-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "graphql-compose-algolia",
"version": "0.1.8",
"description": "Attach Algolia search and synchronize indices with your data based off of GraphQL types",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"author": "Luke Smetham <luke@smetham.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LukeSmetham/graphql-compose-algolia.git"
},
"scripts": {
"build": "rollup -c",
"clean": "rm -rf lib",
"watch": "rollup -c -w"
},
"dependencies": {
"lodash.pick": "^4.4.0",
"lodash.pickby": "^4.6.0"
},
"peerDependencies": {
"algoliasearch": "^4.8.3",
"graphql": "^16.2.0",
"graphql-compose": "^7.23.0",
"graphql-scalars": "^1.6.1"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-async-generator-functions": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"algoliasearch": "^4.8.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-optional-chaining": "^7.0.0-beta.3",
"babel-preset-env": "^1.7.0",
"graphql-compose": "^7.23.0",
"graphql-scalars": "^1.6.1",
"rollup-plugin-peer-deps-external": "^2.2.4"
}
}