-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
32 lines (32 loc) · 1.06 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
{
"name": "showcase-hn-comments-semantic-search",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "parcel serve index.html --port 3001",
"indexer": "node scripts/indexDataInTypesense.js",
"typesenseServer": "docker run -i -p 8108:8108 -v`pwd`/typesense-server-data/:/data typesense/typesense:27.0 --data-dir /data --api-key=xyz --listen-port 8108 --enable-cors",
"build": "parcel build index.html --public-url https://hn-comments-search.typesense.org"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"dotenv": "^16.4.7",
"instantsearch.js": "^4.75.6",
"jquery": "^3.7.1",
"typesense": "^1.8.2",
"typesense-instantsearch-adapter": "^2.8.0"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.12.0",
"buffer": "^5.5.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "5.0.0",
"parcel": "^2.8.3",
"prettier": "3.0.1",
"process": "^0.11.10"
}
}