-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.66 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
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
{
"name": "@scaffolding/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"format:check": "prettier --no-error-on-unmatched-pattern --check apps/{frontend,backend}/src/**/*.{js,ts,tsx}",
"format": "prettier --no-error-on-unmatched-pattern --write apps/{frontend,backend}/src/**/*.{js,ts,tsx}",
"lint:check": "eslint 'apps/frontend/src/**/*.{ts,tsx}' && eslint 'apps/backend/src/**/*.{ts,tsx}'",
"lint": "eslint 'apps/frontend/src/**/*.{ts,tsx}' --fix && eslint 'apps/backend/src/**/*.{ts,tsx}' --fix",
"prepush": "yarn run format:check && yarn run lint:check",
"prepush:fix": "yarn run format && yarn run lint",
"prepare": "husky install",
"typeorm": "ts-node -r tsconfig-paths/register --project apps/backend/tsconfig.app.json ./node_modules/typeorm/cli.js",
"migration:generate": "yarn typeorm migration:generate apps/backend/src/migrations/$name -d apps/backend/src/data-source.ts",
"migration:run": "yarn typeorm migration:run -d apps/backend/src/data-source.ts",
"migration:revert": "yarn typeorm migration:revert -d apps/backend/src/data-source.ts",
"migration:create": "yarn typeorm migration:create apps/backend/src/migrations/$name",
"test": "jest"
},
"private": true,
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.1058.0",
"@aws-sdk/client-sesv2": "^3.1063.0",
"@aws-sdk/client-s3": "^3.1045.0",
"@nestjs/cli": "^11.0.23",
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^10.0.2",
"@nestjs/passport": "^10.0.2",
"@nestjs/platform-express": "^11.1.26",
"@nestjs/swagger": "^7.1.12",
"@nestjs/typeorm": "^11.0.1",
"@nx/eslint": "22.7.5",
"@types/pg": "^8.15.5",
"amazon-cognito-identity-js": "^6.3.5",
"axios": "^1.18.0",
"bottleneck": "^2.19.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"global": "^4.4.0",
"jwks-rsa": "^4.0.1",
"listr2": "8",
"nodemailer": "^8.0.7",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.15.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typeorm": "^0.3.29"
},
"devDependencies": {
"@eslint/config-array": "^0.23.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@nestjs/schematics": "^11.1.0",
"@nestjs/testing": "^10.0.2",
"@nx/cypress": "22.7.5",
"@nx/eslint-plugin": "22.7.5",
"@nx/jest": "22.7.5",
"@nx/react": "22.7.5",
"@nx/vite": "22.7.5",
"@nx/webpack": "22.7.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.3",
"@types/nodemailer": "^8.0.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "7",
"@typescript-eslint/parser": "6",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/ui": "^0.32.0",
"aws-sdk-client-mock": "^4.1.0",
"cypress": "^15.17.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^2.13.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.7",
"nx": "22.7.5",
"nx-cloud": "^19.1.3",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.32.0"
},
"resolutions": {
"listr2": "8",
"@nx/eslint-plugin/@typescript-eslint/utils": "6.21.0"
}
}