-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
52 lines (52 loc) · 1.91 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
{
"name": "root",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/meilisearch/meilisearch-js-plugins.git"
},
"workspaces": [
"packages/*",
"playgrounds/*"
],
"scripts": {
"playground:geosearch": "turbo run dev --filter=@meilisearch/geo-playground --parallel",
"playground:vanilla": "turbo run dev --filter=@meilisearch/vanilla-playground --parallel",
"playground:vue3": "turbo run dev --filter=@meilisearch/vue3-ts-playground --parallel",
"playground:react": "turbo run dev --filter=@meilisearch/react-playground --parallel",
"playground:local-react": "turbo run dev --filter=@meilisearch/local-react-playground --parallel",
"playground:node": "turbo run dev --filter=@meilisearch/node-playground --parallel",
"playground:autocomplete": "turbo run dev --filter=@meilisearch/autocomplete-playground --parallel",
"test:e2e": "turbo run test:e2e",
"test:e2e:watch": "turbo run test:e2e:watch",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"build": "turbo run build",
"test": "turbo test",
"test:watch": "turbo run test:watch",
"instant-meilisearch:test:watch": "yarn --cwd ./packages/instant-meilisearch test:watch",
"autocomplete:test:watch": "yarn --cwd ./packages/autocomplete-client test:watch",
"test:types": "turbo run test:types",
"version-packages": "changeset version && turbo version",
"release": "yarn build && changeset publish"
},
"devDependencies": {
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^29.5.1",
"@types/jest-diff": "^24.3.0",
"parcel": "^2.12.0",
"turbo": "^2.1.3"
},
"dependencies": {
"@changesets/cli": "^2.26.1",
"instantsearch.css": "^8.0.0"
},
"alias": {
"node:crypto": false,
"node:buffer": false,
"node:process": false
},
"packageManager": "yarn@1.22.22"
}