-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
40 lines (40 loc) · 1.56 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
{
"name": "typesense-recipe-search",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "parcel index.html --port 3000",
"indexer:transformDataset": "bundle exec ruby scripts/indexer/transform_dataset.rb",
"indexer:importToTypesense": "bundle exec ruby scripts/indexer/index.rb",
"typesenseServer": "docker run -i -p 8108:8108 -v`pwd`/typesense-server-data/:/data typesense/typesense:0.17.0 --data-dir /data --api-key=xyz --listen-port 8108 --enable-cors",
"build": "parcel build index.html --public-url https://recipe-search.typesense.org",
"deploy": "rm -rf build && yarn build && aws s3 cp --recursive ./dist s3://recipe-search.typesense.org/ --profile typesense && yarn clearCDNCache",
"clearCDNCache": "aws cloudfront create-invalidation --distribution-id E11CLJMGS6TH1U --paths \"/*\" --profile typesense",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "5.7.0",
"eslint-config-prettier": "3.6.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-prettier": "3.1.2",
"parcel-bundler": "1.12.4",
"prettier": "1.19.1",
"sass": "^1.26.11"
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"@popperjs/core": "^2.5.3",
"bootstrap": "^4.5.2",
"dotenv": "^8.2.0",
"fast-json-stringify": "^2.2.9",
"instantsearch.js": "^4.8.3",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"papaparse": "^5.3.0",
"popper.js": "^1.16.1",
"typesense": "^0.11.1",
"typesense-instantsearch-adapter": "^1.2.1-0"
}
}