forked from mongodb/docs-worker-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "workerpool",
"version": "1.0.0",
"description": "Worker Pool Basic Implementation",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles --coverage",
"start": "node index.js",
"clean": "node maintain.js",
"build": "tsc",
"format": "npm run prettier -- --check",
"format:fix": "npm run prettier -- --write",
"lint": "eslint --ext .ts .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{js,jsx,json,md,ts}' '!modules/**' '!cdk-infra/**'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git://github.com/mongodb/docs-worker-pool.git"
},
"author": "Guru Kanthasamy",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-batch": "^3.109.0",
"@aws-sdk/client-ecs": "^3.49.0",
"@aws-sdk/client-sqs": "^3.49.0",
"@aws-sdk/client-ssm": "^3.54.1",
"@babel/core": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@octokit/rest": "^19.0.11",
"@types/aws-lambda": "^8.10.92",
"@types/config": "^0.0.39",
"@types/tsscmp": "^1.0.0",
"async-retry": "^1.2.3",
"axios": "^0.21.1",
"config": "^3.3.6",
"core-js": "^3.1.4",
"fs-extra": "^7.0.1",
"jest-mock-extended": "^2.0.2-beta2",
"js-yaml": "^3.13.1",
"mongodb": "^5.1.0",
"simple-git": "^2.45.1",
"tsscmp": "^1.0.6",
"validator": "^10.11.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@octokit/webhooks-types": "^7.1.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/node": "12.12.43",
"@types/readable-stream": "2.3.5",
"@typescript-eslint/eslint-plugin": "~5.5.0",
"@typescript-eslint/parser": "~5.5.0",
"aws-sdk": "^2.1095.0",
"aws-sdk-mock": "^4.3.0",
"axios-mock-adapter": "^1.20.0",
"babel-jest": "^27.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"esbuild": "^0.17.19",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^22.1.3",
"husky": "^7.0.4",
"jest": "^27.2.4",
"jest-environment-node": "^27.1.0",
"jest-mock-axios": "^4.4.0",
"lint-staged": "^12.1.2",
"mongodb-memory-server": "^8.13.0",
"prettier": "^2.4.1",
"regenerator-runtime": "^0.13.1",
"serverless-esbuild": "^1.45.1",
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-plugin-common-excludes": "^4.0.0",
"serverless-plugin-include-dependencies": "^5.1.0",
"serverless-prune-plugin": "^2.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts}": [
"npm run format:fix",
"npm run lint:fix"
]
}
}