-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.86 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
{
"name": "serverless-search",
"version": "1.0.0",
"description": "Poor man's elasticsearch. Simple and serverless full-text search engine for smaller projects",
"main": "index.js",
"author": "Alan Reid <[email protected]>",
"license": "MIT",
"scripts": {
"test": "c8 ava",
"format": "prettier --write \"**/*.{js,ts}\"",
"format:check": "prettier --check \"**/*.{js,ts}\"",
"lint": "eslint",
"deploy": "sls deploy",
"invoke:createDocument": "sls invoke local --function createDocument --path functions/createDocument/event.json",
"invoke:indexDocument": "sls invoke local --function indexDocument --path functions/indexDocument/event.json",
"invoke:processDocuments": "sls invoke local --function processDocuments --path ./functions/processDocuments/event.json",
"invoke:searchDocuments": "sls invoke local --function searchDocuments --path functions/searchDocuments/event.json"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"**/*.test.ts"
],
"require": [
"ts-node/register"
],
"verbose": true,
"timeout": "1m"
},
"devDependencies": {
"@faker-js/faker": "7.3.0",
"@types/aws-lambda": "8.10.101",
"@types/http-errors": "1.8.2",
"@types/node": "18.0.3",
"@types/sinon": "10.0.12",
"ava": "4.3.1",
"aws-sdk": "2.1171.0",
"c8": "7.11.3",
"eslint": "8.19.0",
"prettier": "2.7.1",
"serverless-esbuild": "1.31.0",
"serverless-s3-encryption": "1.0.0",
"sinon": "14.0.0",
"ts-node": "10.8.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@middy/core": "3.1.0",
"@middy/http-error-handler": "3.1.0",
"@middy/http-json-body-parser": "3.1.0",
"@types/elasticlunr": "0.9.5",
"@types/uuid": "8.3.4",
"elasticlunr": "0.9.5",
"http-errors": "2.0.0",
"uuid": "8.3.2",
"yup": "0.32.11"
}
}