-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
118 lines (118 loc) · 3.48 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
{
"name": "qwiz",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "node dist/apps/backend/main.js",
"build": "nx build backend --prod",
"build:frontend": "npx nx build frontend --prod",
"test": "nx test",
"lint": "nx lint",
"db:generate": "npx prisma generate",
"db:studio": "npx prisma studio",
"db:migrate": "npx prisma migrate dev",
"db:push": "npx prisma db push",
"db:pull": "npx prisma db pull",
"frontend": "nx serve frontend",
"frontend:analyze": "cross-env ANALYZE=true npx nx build frontend --prod",
"backend": "nx serve backend",
"landing": "nx serve landing"
},
"volta": {
"node": "16.13.2"
},
"private": true,
"dependencies": {
"@builder.io/partytown": "^0.5.3",
"@mantine/core": "4.2.5",
"@mantine/dates": "4.2.5",
"@mantine/dropzone": "4.2.5",
"@mantine/hooks": "4.2.5",
"@mantine/modals": "4.2.5",
"@mantine/next": "4.2.5",
"@mantine/notifications": "4.2.5",
"@mantine/rte": "4.2.5",
"@mantine/spotlight": "4.2.5",
"@nestjs/common": "^8.4.4",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.4.4",
"@nestjs/mapped-types": "*",
"@nestjs/platform-express": "^8.4.4",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^3.13.0",
"@sentry/nextjs": "^6.19.7",
"aws-sdk": "^2.1128.0",
"axios": "^0.26.1",
"chrome-aws-lambda": "^10.1.0",
"classnames": "^2.3.1",
"cookie-cutter": "^0.2.0",
"core-js": "^3.22.4",
"dayjs": "^1.11.1",
"eslint-config-airbnb": "^19.0.4",
"formik": "^2.2.9",
"framer-motion": "^6.3.3",
"google-map-react": "^2.1.10",
"inspx": "^0.0.1-alpha.6",
"joi": "^17.6.0",
"merge-pdf-buffers": "^1.0.3",
"next": "12.1.6",
"next-auth": "4.3.4",
"next-http-proxy-middleware": "^1.2.4",
"next-seo": "^5.4.0",
"nodemailer": "^6.7.5",
"phosphor-react": "^1.4.1",
"puppeteer": "^13.7.0",
"react": "17.0.2",
"react-device-detect": "^2.2.2",
"react-dom": "17.0.2",
"react-query": "^3.38.1",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.9",
"rxjs": "^7.5.5",
"sha1": "^1.1.1",
"tslib": "^2.4.0",
"yup": "^0.32.11",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@nestjs/schematics": "^8.0.10",
"@nestjs/testing": "^8.4.4",
"@next/bundle-analyzer": "^12.1.6",
"@nrwl/cli": "14.0.5",
"@nrwl/eslint-plugin-nx": "14.0.5",
"@nrwl/jest": "14.0.5",
"@nrwl/linter": "14.0.5",
"@nrwl/nest": "14.0.5",
"@nrwl/next": "14.0.5",
"@nrwl/node": "14.0.5",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "14.0.5",
"@nrwl/tao": "14.0.5",
"@nrwl/web": "14.0.5",
"@nrwl/workspace": "14.0.5",
"@types/jest": "27.5.0",
"@types/node": "17.0.31",
"@types/nodemailer": "^6.4.4",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@typescript-eslint/eslint-plugin": "~5.22.0",
"@typescript-eslint/parser": "~5.18.0",
"babel-jest": "28.0.3",
"cross-env": "^7.0.3",
"eslint": "~8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.5.0",
"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": "28.0.3",
"prettier": "^2.6.2",
"prisma": "^3.13.0",
"sass": "1.51.0",
"ts-jest": "28.0.1",
"typescript": "~4.6.4",
"windicss-webpack-plugin": "^1.7.2"
}
}