-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
101 lines (100 loc) · 3.04 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
{
"name": "fest",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "nx run-many --parallel --target=serve --projects=api,frontend",
"dev:api": "nx serve api",
"dev:frontend": "nx serve frontend",
"build:api": "nx build api --prod",
"build:frontend": "nx build frontend --prod",
"start:api": "node dist/apps/api/main",
"start:frontend": "next start dist/apps/frontend",
"prisma:generate-types": "prisma generate",
"preprisma:migrate:dev": "yarn prisma:generate-types",
"prisma:migrate:dev": "prisma migrate dev --name",
"prisma:seed": "ts-node --compiler-options {\\\"module\\\":\\\"CommonJS\\\"} ./apps/api/src/prisma/seed.ts"
},
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.10.2",
"@emotion/cache": "^11.9.3",
"@emotion/react": "11.10.5",
"@emotion/server": "^11.4.0",
"@emotion/styled": "11.10.5",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.2",
"@nestjs/common": "9.2.1",
"@nestjs/config": "^2.1.0",
"@nestjs/core": "9.2.1",
"@nestjs/mapped-types": "^1.1.0",
"@nestjs/passport": "^8.2.2",
"@nestjs/platform-express": "9.2.1",
"@prisma/client": "^4.0.0",
"@tanstack/react-query": "^4.0.10",
"axios": "^0.27.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"core-js": "^3.6.5",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.1.4",
"next": "13.0.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"postmark": "^3.0.12",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.34.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.0.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@nestjs/schematics": "9.0.3",
"@nestjs/testing": "9.2.1",
"@nrwl/cli": "15.4.1",
"@nrwl/cypress": "15.4.1",
"@nrwl/eslint-plugin-nx": "15.4.1",
"@nrwl/jest": "15.4.1",
"@nrwl/linter": "15.4.1",
"@nrwl/nest": "15.4.1",
"@nrwl/next": "15.4.1",
"@nrwl/node": "15.4.1",
"@nrwl/react": "15.4.1",
"@nrwl/web": "15.4.1",
"@nrwl/workspace": "15.4.1",
"@tanstack/react-query-devtools": "^4.0.10",
"@testing-library/react": "13.4.0",
"@types/jest": "28.1.8",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"babel-jest": "28.1.3",
"cypress": "^9.1.0",
"eslint": "~8.15.0",
"eslint-config-next": "13.0.0",
"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-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "28.1.3",
"nx": "15.4.1",
"prettier": "^2.6.2",
"prisma": "^4.0.0",
"react-test-renderer": "18.2.0",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"prisma": {
"schema": "apps/api/schema.prisma"
},
"engines": {
"node": "16.x"
}
}