-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.67 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
{
"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",
"prepush": "yarn run format:check && yarn run lint:check",
"prepush:fix": "yarn run format && yarn run lint",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.410.0",
"@nestjs/cli": "^10.1.17",
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"@nestjs/passport": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"@nestjs/swagger": "^7.1.12",
"@nestjs/typeorm": "^10.0.0",
"@types/mongodb": "^4.0.7",
"amazon-cognito-identity-js": "^6.3.5",
"axios": "^1.5.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"global": "^4.4.0",
"jwks-rsa": "^3.1.0",
"mongodb": "^6.1.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.0.2",
"@nx/cypress": "^16.8.1",
"@nx/eslint-plugin": "^16.8.1",
"@nx/eslint-plugin-nx": "^16.0.0-beta.1",
"@nx/jest": "^16.8.1",
"@nx/linter": "^16.8.1",
"@nx/react": "^16.8.1",
"@nx/vite": "^16.8.1",
"@nx/webpack": "^16.8.1",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/ui": "^0.32.0",
"cypress": "^13.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.13.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"nx": "^16.8.1",
"nx-cloud": "^16.4.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.32.0"
}
}