-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 KB
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
{
"name": "habit-loop-server",
"version": "1.0.0",
"description": "",
"main": "./src/app.ts",
"scripts": {
"start": "set NODE_ENV=test && node src/app.ts",
"test": "export NODE_ENV=test && export NODE_PATH=$(pwd)/node_modules && find test -name '*_test.js' | xargs nyc --reporter=lcov _mocha",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-cache-redis": "^0.4.0",
"apollo-server-lambda": "^2.9.4",
"aws-sdk": "^2.361.0",
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"expo-server-sdk": "^3.1.0",
"graphql": "^14.0.2",
"ioredis": "^4.9.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"merge-graphql-schemas": "^1.7.0",
"moment": "^2.24.0",
"pino": "^5.10.6",
"serverless-dotenv-plugin": "^2.3.2",
"uuid": "^3.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.31",
"@types/graphql": "^14.5.0",
"@types/ioredis": "^4.0.15",
"@types/jsonwebtoken": "^8.3.3",
"@types/lodash": "^4.14.137",
"@types/node": "^12.7.2",
"@types/node-fetch": "^2.5.2",
"@types/pino": "^5.8.10",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"graphql-tools": "^4.0.3",
"jest": "^24.7.1",
"jest-cli": "^24.7.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"pino-pretty": "^2.6.0",
"prettier": "^1.18.2",
"serverless-dynamodb-local": "^0.2.37",
"serverless-offline": "^3.31.3",
"sinon": "^7.1.1",
"supertest": "^3.3.0",
"typescript": "^3.8.3"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"./build",
"./dist"
],
"coverageReporters": [
"lcov",
"html"
]
}
}