forked from Code-4-Community/scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.43 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.43 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"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 --ext .ts,.tsx && eslint apps/backend --ext .ts,.tsx",
"lint": "eslint apps/frontend --ext .ts,.tsx --fix && eslint apps/backend --ext .ts,.tsx --fix",
"test": "jest --runInBand",
"prepush": "yarn run format:check && yarn run lint:check",
"prepush:fix": "yarn run format && yarn run lint",
"prepare": "husky install",
"typeorm:migrate": "ts-node --project apps/backend/tsconfig.app.json -r dotenv/config ./node_modules/typeorm/cli.js migration:run -d apps/backend/src/config/typeorm.ts",
"typeorm:revert": "ts-node --project apps/backend/tsconfig.app.json -r dotenv/config ./node_modules/typeorm/cli.js migration:revert -d apps/backend/src/config/typeorm.ts",
"typeorm:create": "ts-node --project apps/backend/tsconfig.app.json -r dotenv/config ./node_modules/typeorm/cli.js migration:create",
"prettier:check": "prettier --check \"apps/**/*.{ts,tsx,js,jsx,json,md}\"",
"prettier:write": "prettier --write \"apps/**/*.{ts,tsx,js,jsx,json,md}\""
},
"private": true,
"dependencies": {
"@aws-amplify/ui-react": "^6.9.3",
"@aws-sdk/client-cognito-identity-provider": "^3.410.0",
"@aws-sdk/client-s3": "^3.735.0",
"@aws-sdk/client-sesv2": "^3.989.0",
"@chakra-ui/react": "^3.27.0",
"@emotion/react": "11.14.0",
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.0.2",
"@nestjs/passport": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"@nestjs/schedule": "^6.1.0",
"@nestjs/swagger": "^7.4.2",
"@nestjs/typeorm": "^10.0.0",
"@types/google-libphonenumber": "^7.4.30",
"aws-amplify": "^6.16.0",
"axios": "^1.8.2",
"bottleneck": "^2.19.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.4.5",
"google-libphonenumber": "^3.2.40",
"jwks-rsa": "^3.1.0",
"lucide-react": "^0.544.0",
"mongodb": "^6.1.0",
"multer": "^2.0.2",
"nodemailer": "^8.0.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pg": "^8.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-international-phone": "^4.5.0",
"react-router-dom": "6.30.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"typeorm": "^0.3.17",
"typeorm-naming-strategies": "^4.1.0"
},
"devDependencies": {
"@jest/globals": "30.0.5",
"@nestjs/testing": "^10.0.2",
"@nx/eslint": "22.5.1",
"@nx/eslint-plugin": "22.5.1",
"@nx/eslint-plugin-nx": "^16.0.0-beta.1",
"@nx/jest": "22.5.1",
"@nx/react": "22.5.1",
"@nx/vite": "22.5.1",
"@nx/vitest": "22.5.1",
"@nx/webpack": "22.5.1",
"@testing-library/react": "16.1.0",
"@types/jest": "30.0.0",
"@types/multer": "^2.0.0",
"@types/node": "^18.14.2",
"@types/nodemailer": "^6.4.17",
"@types/passport-jwt": "^4.0.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/ui": "^0.32.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "5.0.0",
"husky": "^8.0.3",
"jest": "30.0.5",
"jest-mock-extended": "^4.0.0",
"jest-util": "30.0.5",
"jiti": "2.4.2",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.11",
"nx": "22.5.1",
"prettier": "^2.6.2",
"ts-jest": "29.4.6",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"vite": "^7.3.1",
"vitest": "^2.1.8"
},
"resolutions": {
"node-forge": "^1.3.2",
"glob": "^10.5.0",
"jws": "^3.2.3",
"axios": "^1.8.2",
"esbuild": "^0.25.0",
"micromatch": "^4.0.8",
"js-yaml": "^4.1.1",
"semver": "^7.5.2",
"tmp": "^0.2.4",
"webpack-dev-server": "^5.2.1",
"strip-ansi": "^6.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"string-width": "^4.2.3",
"string-width-cjs": "npm:string-width@^4.2.3",
"wrap-ansi": "^7.0.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
}
}