-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
109 lines (109 loc) · 3.26 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
{
"name": "devfest",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx run-many -t serve -p frontend backend",
"start:frontend": "nx run-many -t serve -p frontend",
"build": "nx run-many -t build -p frontend backend",
"build:backend": "npx nx build backend --production",
"run:backend": "node dist/apps/backend/main.js",
"test": "nx run-many -t test -p frontend backend",
"lint": "nx run-many -t lint -p frontend backend",
"postinstall": "npx prisma generate"
},
"private": true,
"dependencies": {
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"@octokit/graphql": "^7.0.1",
"@prisma/client": "^5.19.0",
"@sweetalert2/themes": "^5.0.18",
"@types/airtable": "^0.10.5",
"@types/cli-color": "^2.0.6",
"@types/country-list": "^2.1.4",
"@types/lodash": "^4.17.7",
"@types/moment": "^2.13.0",
"@types/node-schedule": "^2.1.7",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/yup": "^0.32.0",
"airtable": "^0.12.2",
"axios": "^1.6.0",
"bullmq": "^5.12.12",
"cli-color": "^2.0.4",
"clsx": "^2.1.1",
"country-list": "^2.3.0",
"dayjs": "^1.11.13",
"ical-generator": "^8.0.0",
"ioredis": "^5.4.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"next": "14.2.3",
"next-auth": "^5.0.0-beta.20",
"node-schedule": "^2.1.1",
"react": "18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.3.1",
"react-hook-form": "^7.53.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-loader-spinner": "^6.1.6",
"reflect-metadata": "^0.1.13",
"resend": "^4.0.0",
"rxjs": "^7.8.0",
"slugify": "^1.6.6",
"sweetalert2": "^11.14.0",
"swr": "^2.2.5",
"tslib": "^2.3.0",
"use-debounce": "^10.0.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/eslint": "19.7.2",
"@nx/eslint-plugin": "19.7.2",
"@nx/jest": "19.7.2",
"@nx/js": "19.7.2",
"@nx/nest": "19.7.2",
"@nx/next": "19.7.2",
"@nx/node": "19.7.2",
"@nx/web": "19.7.2",
"@nx/webpack": "19.7.2",
"@nx/workspace": "19.7.2",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@testing-library/react": "15.0.6",
"@types/jest": "^29.5.12",
"@types/node": "~18.16.9",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"eslint": "~8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nx": "19.7.2",
"postcss": "^8.4.41",
"prettier": "^2.8.8",
"prisma": "^5.19.0",
"sass": "1.62.1",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.5.2",
"webpack-cli": "^5.1.4"
}
}