-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.6 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
121
122
123
124
125
126
127
{
"name": "dializer",
"version": "0.0.0",
"license": "MIT",
"type": "commonjs",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"watch:frontend": "nx serve frontend",
"watch:backend": "nx serve backend",
"dev": "concurrently -n frontend,backend \"npm run watch:frontend\" \"npm run watch:backend\""
},
"engines": {
"node": ">=18.13.0"
},
"private": true,
"dependencies": {
"@nestjs-modules/mailer": "^1.8.1",
"@nestjs/common": "9.4.3",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "9.4.3",
"@nestjs/jwt": "^9.0.0",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "9.4.3",
"@nestjs/swagger": "6.3.0",
"@nestjs/typeorm": "^9.0.1",
"@nx/nest": "16.3.2",
"@nx/webpack": "^16.3.2",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^4.29.5",
"@types/express": "4.17.17",
"@types/uuid": "^9.0.1",
"autoprefixer": "10.4.13",
"axios": "^1.2.1",
"base-64": "^1.0.0",
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"concurrently": "^8.0.1",
"core-js": "^3.6.5",
"daisyui": "^2.51.5",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"framer-motion": "^10.12.16",
"jwt-decode": "^3.1.2",
"konva": "^8.3.13",
"next": "13.3.0",
"nodemailer": "^6.9.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-hook-form": "^7.43.9",
"react-is": "18.2.0",
"react-joyride": "^2.5.4",
"react-konva": "18.2.3",
"react-konva-utils": "^0.3.0",
"react-loader-spinner": "^5.3.4",
"react-toastify": "^9.1.1",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.0.0",
"tabler-icons-react": "^1.55.0",
"tailwindcss": "3.2.7",
"tslib": "^2.3.0",
"typeorm": "^0.3.11",
"use-debounce": "^9.0.4",
"use-image": "^1.1.0",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.0",
"winston": "^3.10.0",
"winston-loki": "^6.0.7",
"zod": "^3.22.4",
"zustand": "^4.1.5"
},
"devDependencies": {
"@monodon/rust": "^1.2.0",
"@nestjs/schematics": "9.2.0",
"@nestjs/testing": "9.4.3",
"@nrwl/js": "16.3.2",
"@nx/cypress": "16.3.2",
"@nx/eslint-plugin": "16.3.2",
"@nx/jest": "16.3.2",
"@nx/linter": "16.3.2",
"@nx/next": "16.3.2",
"@nx/node": "16.3.2",
"@nx/react": "16.3.2",
"@nx/web": "16.3.2",
"@nx/workspace": "16.3.2",
"@testing-library/react": "14.0.0",
"@types/base-64": "^1.0.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "29.4.4",
"@types/node": "18.14.2",
"@types/nodemailer": "^6.4.7",
"@types/passport-jwt": "^3.0.7",
"@types/passport-local": "^1.0.34",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-is": "17.0.3",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"babel-jest": "29.4.3",
"cypress": "^12.2.0",
"eslint": "~8.15.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"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.4.3",
"jest-environment-jsdom": "29.4.3",
"nx": "16.3.2",
"nx-cloud": "16.0.5",
"prettier": "^2.6.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
}
}