-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 2.18 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
{
"name": "gatsby-plugin-meilisearch",
"version": "0.3.1",
"description": "Gatsby plugin to index your content to Meilisearch based on queries",
"main": "gatsby-node.js",
"scripts": {
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js . --fix",
"playground:start": "yarn --cwd ./playground && yarn --cwd ./playground start",
"playground:build": "yarn --cwd ./playground build",
"playground:dev": "yarn --cwd ./playground && yarn --cwd ./playground watch",
"playground:serve": "yarn --cwd ./playground serve",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "yarn playground:build && concurrently --kill-others -s first \"yarn --cwd ./playground serve\" \"cypress run\"",
"test:e2e:watch": "concurrently --kill-others -s first \"yarn playground:dev\" \"cypress open\"",
"test": "concurrently --kill-others -s first \"yarn playground:start\" \"wait-port http://localhost:8000/___graphql && jest --testPathPattern=tests\"",
"test:watch": "concurrently --kill-others -s first \"yarn playground:start\" \"wait-port http://localhost:8000/___graphql && jest --testPathPattern=tests --watch\""
},
"files": [
"gatsby-node.js",
"src/validate.js",
"src/agents.js"
],
"repository": {
"type": "git",
"url": "https://github.com/meilisearch/gatsby-plugin-meilisearch.git"
},
"author": "Morgane Dubus <[email protected]>",
"maintainers": [
{
"name": "Morgane Dubus <[email protected]>"
}
],
"keywords": [
"gatsby",
"gatsby-plugin",
"meilisearch",
"search"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/meilisearch/gatsby-plugin-meilisearch/issues"
},
"homepage": "https://github.com/meilisearch/gatsby-plugin-meilisearch#readme",
"devDependencies": {
"concurrently": "^7.0.0",
"cypress": "^9.1.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"gatsby": "^4.24.4",
"jest": "^27.4.7",
"prettier": "^2.3.2",
"wait-port": "^1.0.4"
},
"dependencies": {
"meilisearch": "^0.42.0"
}
}