forked from anooj-gandham/blogSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 1.02 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
{
"name": "typesense-instantsearch-demo",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "parcel index.html --port 3000",
"build": "parcel build index.html",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"typesenseServer": "docker run -i -p 8108:8108 -v/tmp/typesense-server-data-1c/:/data typesense/typesense:0.20.0 --data-dir /data --api-key=xyz --listen-port 8108 --enable-cors",
"populateTypesenseIndex": "node populateTypesenseIndex.js"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "5.7.0",
"eslint-config-algolia": "13.2.3",
"eslint-config-prettier": "3.6.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-prettier": "3.1.2",
"parcel-bundler": "^1.12.5",
"prettier": "1.19.1",
"sass": "^1.37.0",
"typesense": "^0.14.0"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"bindings": "^1.5.0",
"lodash": "^4.17.21",
"react-instantsearch-dom": "^6.11.2",
"typesense-instantsearch-adapter": "^2.0.1"
}
}