generated from sudokar/nx-serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.75 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "mex-integration",
"version": "0.0.1",
"private": true,
"scripts": {
"nx": "nx",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:stacks": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"serve-all": "nx run-many --target=serve --all && sh scripts/sqsOfflineSetup.sh",
"dep-graph": "nx dep-graph",
"help": "nx help",
"prepare": "husky install",
"container-up": "cd ./scripts && docker-compose up",
"nxall": "nx run-many --target=serve --all --maxParallel=10",
"nxa": "npm-run-all -p nxall container-up"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.397.0",
"@aws-sdk/credential-provider-cognito-identity": "^3.397.0",
"@aws-sdk/s3-request-presigner": "^3.397.0",
"@octokit/auth-app": "^3.6.1",
"@octokit/core": "^3.5.1",
"@octokit/rest": "^18.12.0",
"@slack/bolt": "^3.9.0",
"@workduck-io/invoke-lambda": "^0.0.3",
"@workduck-io/mex-default-user-token": "^0.0.2",
"@workduck-io/wderror": "^0.0.4",
"deep-diff": "^1.0.2",
"deepmerge": "^4.2.2",
"dot-prop": "^7.2.0",
"dynamodb-toolbox": "^0.3.5",
"fast-deep-equal": "^3.1.3",
"got": "11.8.3",
"json-rules-engine": "^6.1.2",
"mem": "^9.0.2",
"nanoid": "^3.3.1",
"nanoid-dictionary": "^4.3.0",
"parse-github-event": "^1.1.3",
"pino": "^7.8.0",
"query-string": "^7.1.1",
"serverless-dotenv-plugin": "^4.0.2",
"serverless-git-commit-tracker": "^0.3.0",
"serverless-s3-deploy": "^0.10.1",
"stats-map": "^1.0.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@aws-sdk/types": "3.47.0",
"@jest/transform": "27.4.6",
"@nrwl/cli": "13.4.6",
"@nrwl/devkit": "13.4.6",
"@nrwl/eslint-plugin-nx": "13.4.6",
"@nrwl/jest": "13.4.6",
"@nrwl/linter": "13.4.6",
"@nrwl/node": "13.4.6",
"@nrwl/nx-cloud": "13.1.2",
"@nrwl/tao": "13.4.6",
"@nrwl/workspace": "13.4.6",
"@types/aws-lambda": "8.10.90",
"@types/deep-diff": "^1.0.1",
"@types/jest": "27.4.0",
"@types/nanoid-dictionary": "^4.2.0",
"@types/node": "15.12.4",
"@types/serverless": "1.78.42",
"@types/terser-webpack-plugin": "5.0.4",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"@workduck-io/serverless-auto-swagger": "^2.8.3",
"esbuild": "^0.14.11",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.4",
"jest": "27.4.7",
"lint-staged": "12.2.1",
"npm-run-all": "^4.1.5",
"pino-pretty": "^7.5.3",
"prettier": "2.5.1",
"serverless": "^3.15.1",
"serverless-domain-manager": "^6.0.3",
"serverless-dynamodb-local": "^0.2.40",
"serverless-esbuild": "^1.23.3",
"serverless-jest-plugin": "0.4.0",
"serverless-offline": "^8.3.1",
"serverless-offline-sqs": "^6.0.0",
"serverless-prune-plugin": "^2.0.1",
"ts-jest": "27.1.3",
"ts-loader": "9.2.6",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.5.4",
"webpack": "5.66.0",
"webpack-node-externals": "3.0.0"
},
"engines": {
"node": ">=14 <=18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{md,json,yml,yaml,html}": [
"prettier --write"
]
}
}