This repository was archived by the owner on Mar 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.39 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.39 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
73
74
75
76
77
78
{
"name": "ncurated",
"version": "1.3.1",
"description": "my curated list of packages most used for microservices",
"main": "src/index.js",
"repository": "https://github.com/ryanhs/ncurated",
"author": "ryanhs <mr.ryansilalahi@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=10.16"
},
"devDependencies": {
"coveralls": "3.1.1",
"dotenv": "8.2.0",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-prettier": "3.1.3",
"faker": "5.5.3",
"jest": "26.0.1",
"jest-fetch-mock": "3.0.3",
"jest-json-schema": "2.1.0",
"prettier": "2.0.5"
},
"scripts": {
"start": "yarn test:watch",
"test:watch": "yarn test:basic --watch",
"test": "yarn test:basic --coverage",
"test:basic": "node --trace-warnings node_modules/.bin/jest --passWithNoTests --detectOpenHandles --runInBand",
"lint": "eslint src/ tests/ --fix --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"coveralls:push": "cat ./coverage/lcov.info | coveralls",
"node:version": "node --version"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest.setup.js"
]
},
"dependencies": {
"@sentry/node": "^6.19.6",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.17",
"async-lock": "^1.2.4",
"aws-sdk": "^2.669.0",
"az-bunyan": "^0.2.0-alpha.2",
"bluebird": "^3.7.2",
"bunyan": "^1.8.12",
"bunyan-cloudwatch": "^2.2.0",
"bunyan-debug-stream": "^2.0.0",
"bunyan-slack": "^0.0.10",
"bunyan-teams": "^1.0.1",
"cache-manager": "^3.3.0",
"cache-manager-redis-store": "^2.0.0",
"connection-string": "^3.2.2",
"fast-json-stable-stringify": "^2.1.0",
"flaverr": "^1.10.0",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"kafkajs": "npm:@ryanhs/kafkajs@1.11.0",
"lodash": "^4.17.15",
"lodash.omit": "^4.5.0",
"machine": "^15.2.2",
"mutex-promise": "npm:@ryanhs/mutex-promise@0.2.0",
"node-fetch": "^2.6.0",
"redis": "^3.0.2",
"redis-mock": "^0.56.0",
"redlock": "^4.1.0",
"rxjs": "^6.5.5",
"uuid": "^8.0.0",
"zipkin": "^0.22.0",
"zipkin-instrumentation-fetch": "^0.22.0",
"zipkin-transport-http": "^0.22.0"
}
}