-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 4.08 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
{
"name": "my-full-stack-app",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"start:dev": "env-cmd -f .local.env concurrently --kill-others \"npm:db:up\" \"npm:dev:my-frontend\" \"npm:dev:my-backend\" ",
"dev:my-backend": "nx serve my-backend",
"dev:my-frontend": "nx serve my-frontend",
"build": "nx build",
"test": "nx test",
"lint": "nx lint",
"db:up": "npm run db:docker && npm run db:dev-migrate && npm run db:create-client -- --watch",
"db:docker": "docker-compose -f tools/docker-env/dev.docker-compose.yml up -d --no-recreate --remove-orphans",
"db:create-client": "prisma generate",
"db:dev-migrate": "env-cmd --no-override -f .local.env npx prisma migrate dev",
"db:studio": "env-cmd --no-override -f .local.env npx prisma studio",
"gen:gql": "graphql-codegen --config tools/gql-client-side-code-generation/gql-client-side-code-generation.yml --watch"
},
"prisma": {
"schema": "libs/my-backend/data-access-db/src/lib/schema.prisma"
},
"private": true,
"dependencies": {
"@fastify/cookie": "^8.1.0",
"@fastify/csrf-protection": "^6.2.0",
"@fastify/rate-limit": "^7.4.0",
"@graphql-codegen/cli": "^2.12.0",
"@graphql-codegen/near-operation-file-preset": "^2.4.1",
"@graphql-codegen/typed-document-node": "^2.3.3",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-urql": "^3.6.4",
"@heroicons/react": "^2.0.11",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/graphql": "^10.0.22",
"@nestjs/jwt": "^9.0.0",
"@nestjs/mercurius": "^10.0.22",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/platform-fastify": "^9.0.11",
"@nrwl/devkit": "^14.6.4",
"@prisma/client": "^4.3.1",
"@tailwindcss/typography": "^0.5.7",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"autoprefixer": "^10.4.8",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"concurrently": "^7.3.0",
"core-js": "^3.6.5",
"graphql": "^16.6.0",
"graphql-codegen": "^0.4.0",
"helmet": "^6.0.0",
"mercurius": "^10.5.0",
"next": "12.2.5",
"next-themes": "^0.2.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"postcss": "^8.4.16",
"prisma-nestjs-graphql": "^17.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.0.0",
"tailwindcss": "^3.1.8",
"tslib": "^2.3.0",
"urql": "^3.0.2"
},
"devDependencies": {
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@nrwl/cli": "14.5.10",
"@nrwl/cypress": "14.6.3",
"@nrwl/eslint-plugin-nx": "^14.5.10",
"@nrwl/jest": "14.5.10",
"@nrwl/linter": "14.5.10",
"@nrwl/nest": "14.5.10",
"@nrwl/next": "^14.6.3",
"@nrwl/node": "14.5.10",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "14.6.3",
"@nrwl/web": "14.6.3",
"@nrwl/workspace": "14.5.10",
"@testing-library/react": "13.3.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "27.4.1",
"@types/node": "16.11.7",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "27.5.1",
"cypress": "^10.2.0",
"env-cmd": "^10.1.0",
"eslint": "^8.23.1",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.31.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"nx": "14.5.10",
"prettier": "^2.6.2",
"prisma": "^4.3.1",
"react-test-renderer": "18.2.0",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"typescript": "~4.7.2"
}
}