-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.35 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
{
"name": "reading-service",
"version": "1.0.0",
"description": "The microservice for KairoScope. This is the service that is in charge of reading's operations.",
"main": "index.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"unitTest": "jest __tests__/unit_tests/*",
"unitTestWatch": "jest __tests__/unit_tests/* --watch",
"unitTestCoverage": "jest __tests__/unit_tests/* --coverage",
"integrationTest": "env AWS_XRAY_CONTEXT_MISSING=LOG_ERROR TEST_MODE=integration jest __tests__/test_cases/* --forceExit",
"acceptanceTest": "env TEST_MODE=acceptance TEST_ROOT=https://b8bpiar0bh.execute-api.us-west-2.amazonaws.com/dev jest __tests__/test_cases/*"
},
"author": "Kevin W.",
"license": "MIT",
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/helpers/",
"__tests__/debug_events/"
]
},
"dependencies": {
"@kevinwang0316/redis-helper": "^1.0.1",
"redis": "^2.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@kevinwang0316/cloudwatch": "^1.0.4",
"@kevinwang0316/jwt-verify": "^1.0.2",
"@kevinwang0316/lambda-middlewares": "^1.0.1",
"@kevinwang0316/log": "^1.0.1",
"@kevinwang0316/mongodb-helper": "^1.0.16",
"@puresec/function-shield": "^1.2.7",
"aws-sdk": "^2.437.0",
"aws-xray-sdk": "^2.2.0",
"aws4": "^1.8.0",
"awscred": "^1.4.2",
"axios": "^0.18.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"chance": "^1.0.18",
"cheerio": "^1.0.0-rc.3",
"coveralls": "^3.0.3",
"dotenv": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"jsonwebtoken": "^8.5.1",
"middy": "^0.25.0",
"mongo-sanitize": "^1.0.1",
"mongodb": "^3.2.3",
"serverless": "^1.40.0",
"serverless-iam-roles-per-function": "^1.0.4",
"serverless-plugin-aws-alerts": "^1.2.4",
"serverless-plugin-canary-deployments": "^0.4.7",
"serverless-plugin-tracing": "^2.0.0",
"serverless-prune-plugin": "^1.3.2",
"serverless-pseudo-parameters": "^2.2.0"
}
}