-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.41 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "tradetrust-storage-api",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "IS_OFFLINE=true sls offline start",
"dev:test": "IS_OFFLINE=true sls offline start",
"deploy": "sls deploy",
"depcheck": "depcheck . --ignores=\"serverless-*\"",
"sls-config-check": "sls print",
"test": "IS_OFFLINE=true jest --testPathPattern=src",
"test:ci": "sls offline start --exec 'npm run test && npm run test:integration && npm run test:e2e'",
"test:watch": "npm run test -- --watch",
"test:integration": "IS_OFFLINE=true jest --testPathPattern=test/integration",
"test:e2e": "jest --testPathPattern=test/e2e",
"lint": "eslint . --ext ts,js --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.8",
"@middy/core": "^1.0.0-beta.10",
"@middy/http-error-handler": "^1.0.0-beta.10",
"@middy/http-security-headers": "^1.0.0-beta.10",
"aws-sdk": "^2.655.0",
"aws-xray-sdk-core": "^2.5.0",
"debug": "^4.1.1",
"http-errors": "^1.7.3",
"lodash": "^4.17.15",
"middy": "^0.24.0",
"middy-middleware-json-error-handler": "^1.0.0",
"serverless": "^1.62.0",
"serverless-dotenv-plugin": "^1.2.0",
"serverless-http": "^1.10.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/aws-lambda": "^8.10.40",
"@types/debug": "^4.1.5",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.149",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.7",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"depcheck": "^0.7.2",
"dotenv": "^7.0.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.3",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"serverless-s3-local": "^0.5.4",
"serverless-offline": "5.12.1",
"serverless-webpack": "^5.3.1",
"supertest": "^4.0.2",
"ts-loader": "^6.2.2",
"typescript": "^3.7.5",
"webpack": "^4.42.1",
"webpack-node-externals": "^1.7.2"
}
}