forked from Samagra-Development/yaus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.82 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
{
"name": "yaus",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"prepare": "husky install"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} apps/api/src/app/prisma/seed.ts"
},
"private": true,
"dependencies": {
"@apollo/client": "^3.6.5",
"@golevelup/ts-jest": "^0.3.3",
"@liaoliaots/nestjs-redis": "^8.2.1",
"@nestjs/axios": "^0.0.8",
"@nestjs/common": "^8.0.0",
"@nestjs/config": "^2.0.1",
"@nestjs/core": "^8.0.0",
"@nestjs/microservices": "^8.4.5",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/platform-fastify": "^8.4.5",
"@nestjs/schedule": "^2.0.1",
"@nestjs/swagger": "^5.2.1",
"@nestjs/terminus": "^8.0.6",
"@prisma/client": "^3.14.0",
"@types/cron": "^2.0.0",
"@types/uuid": "^8.3.4",
"amqp-connection-manager": "^4.1.3",
"amqplib": "^0.9.1",
"core-js": "^3.6.5",
"fastify-swagger": "^5.2.0",
"graphql": "^16.5.0",
"hashids": "^2.2.10",
"husky": "^8.0.1",
"ioredis": "^5.0.6",
"isomorphic-fetch": "^3.0.0",
"nestjs-posthog": "^1.1.2",
"nestjs-redis": "git+https://github.com/GyanendroKh/nestjs-redis.git#nest8-fix",
"posthog-node": "^1.3.0",
"prisma": "^3.14.0",
"prop-types": "^15.8.1",
"ra-data-hasura": "^0.4.1",
"ra-data-json-server": "^4.1.0",
"react": "18.1.0",
"react-admin": "^4.1.0",
"react-dom": "18.1.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.0.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@nrwl/cli": "14.1.9",
"@nrwl/cypress": "14.1.9",
"@nrwl/eslint-plugin-nx": "14.1.9",
"@nrwl/jest": "14.1.9",
"@nrwl/linter": "14.1.9",
"@nrwl/nest": "^14.1.9",
"@nrwl/node": "14.1.9",
"@nrwl/react": "14.1.9",
"@nrwl/web": "14.1.9",
"@nrwl/workspace": "14.1.9",
"@testing-library/react": "13.1.1",
"@types/jest": "27.4.1",
"@types/node": "16.11.7",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"babel-jest": "27.5.1",
"cypress": "^9.1.0",
"eslint": "~8.12.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "27.5.1",
"nx": "14.1.9",
"prettier": "^2.5.1",
"react-test-renderer": "18.1.0",
"ts-jest": "27.1.4",
"ts-node": "9.1.1",
"typescript": "~4.6.2"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}