-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.45 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
{
"name": "offie-chrome-ext-backend",
"version": "1.0.0",
"license": "UNLICENSED",
"scripts": {
"lint": "npx eslint 'src/**/*.ts'",
"lint:fix": "npx eslint --fix 'src/**/*.{ts}'",
"test": "npx jest",
"test:coverage": "yarn test --collectCoverage",
"test:openCoverage": "open coverage/lcov-report/index.html",
"test:ci": "yarn test --silent",
"local": "sls offline --stage local",
"local:debug": "node --inspect node_modules/.bin/serverless offline --stage local",
"listingsDetails": "sls invoke local -f listingsDetails -p events/listingsDetails.json"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.83",
"@types/jest": "^26.0.5",
"@types/node": "^16.9.1",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.1.1",
"prettier": "^2.0.5",
"serverless": "^2.64.1",
"serverless-dotenv-plugin": "^3.10.0",
"serverless-offline": "^8.2.0",
"serverless-plugin-typescript": "^2.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.2"
},
"dependencies": {
"@aws-sdk/client-comprehend": "^3.31.0",
"axios": "^0.22.0",
"node-fetch": "^2.6.1",
"query-string": "^7.0.1"
}
}