-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
129 lines (129 loc) · 4.13 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
122
123
124
125
126
127
128
129
{
"name": "money-trees",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start:http": "nx serve http",
"test": "nx run-many --target=test --all --parallel=1",
"test:coverage": "nx run-many --target=test --all --parallel=1 --coverage",
"test:e2e": "nx test --test-file ./apps/http/e2e/app.spec.ts",
"test:clean": "nx run-many --target=test --all --parallel=1 --skip-nx-cache",
"seed": "nx serve seeder",
"lint": "nx run-many --target=lint --all --parallel=1 --verbose",
"build": "nx run-many --target=packer --projects=parser,http,hooks-link-webhook,hooks-pipeline",
"predeploy": "npm run build",
"deploy": "(cd apps/deployment; npx cdk deploy --all)",
"destroy": "(cd apps/deployment; npx cdk destroy --all)",
"prepare": "husky install",
"commit": "cz",
"nx": "nx"
},
"private": true,
"dependencies": {
"@aws-cdk/assert": "^1.127.0",
"@aws-cdk/aws-apigateway": "^1.150.0",
"@aws-cdk/aws-codeartifact": "^1.150.0",
"@aws-cdk/aws-dynamodb": "^1.150.0",
"@aws-cdk/aws-s3": "^1.150.0",
"@aws-cdk/aws-s3-deployment": "^1.152.0",
"@aws-cdk/aws-s3-notifications": "^1.150.0",
"@aws-cdk/core": "^1.127.0",
"@aws-sdk/client-s3": "^3.72.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.1",
"@mui/material": "^5.6.1",
"@nestjs/common": "^8.0.0",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/mapped-types": "^1.0.1",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/swagger": "^5.2.1",
"aws-serverless-express": "^3.4.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"core-js": "^3.6.5",
"dynamoose": "^2.8.5",
"jest-fetch-mock": "^3.0.3",
"jest-mock-extended": "^2.0.5",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"nestjs-dynamoose": "^0.3.4",
"octokit": "^1.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "^5.3.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.0.0",
"tslib": "^2.0.0",
"ulid": "^2.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@codebrew/nx-aws-cdk": "^1.0.3",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@nestjs/schematics": "^8.0.0",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/testing": "^8.0.0",
"@nrwl/cli": "13.9.5",
"@nrwl/eslint-plugin-nx": "13.9.5",
"@nrwl/jest": "13.9.5",
"@nrwl/linter": "13.9.5",
"@nrwl/nest": "13.9.5",
"@nrwl/node": "13.9.5",
"@nrwl/react": "13.9.5",
"@nrwl/web": "13.9.5",
"@nrwl/workspace": "13.9.5",
"@testing-library/react": "12.1.4",
"@testing-library/react-hooks": "7.0.2",
"@types/aws-lambda": "^8.10.93",
"@types/aws-serverless-express": "^3.3.5",
"@types/express": "^4.17.13",
"@types/jest": "27.0.2",
"@types/lodash": "^4.14.181",
"@types/node": "^16.11.7",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@types/react-router-dom": "5.3.3",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "~5.10.0",
"@typescript-eslint/parser": "~5.10.0",
"aws-cdk": "^1.150.0",
"babel-jest": "27.2.3",
"cypress": "^9.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "~8.7.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cdk": "^1.3.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.3",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "^7.0.4",
"jest": "27.2.3",
"lint-staged": "^12.3.7",
"nx": "^13.9.5",
"prettier": "^2.5.1",
"react-test-renderer": "17.0.2",
"supertest": "^6.2.2",
"swagger-ui-express": "^4.3.0",
"ts-jest": "27.0.5",
"tsconfig-paths": "^3.14.1",
"typescript": "~4.5.2"
},
"lint-staged": {
"*.{js,json,md,ts,css}": [
"npx nx affected:lint --uncommitted",
"npx nx format:write --uncommitted"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}