-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.37 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.37 KB
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
{
"name": "ricly",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test"
},
"private": true,
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.14",
"@mui/material": "^5.10.14",
"@mui/x-date-pickers": "^5.0.8",
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.2.0",
"@nestjs/platform-socket.io": "^9.2.0",
"@nestjs/swagger": "^6.1.3",
"@nestjs/throttler": "^3.1.0",
"@nestjs/websockets": "^9.2.0",
"@prisma/client": "^4.6.1",
"bcrypt": "^5.1.0",
"chart.js": "^4.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"connect-redis": "^6.1.3",
"core-js": "^3.6.5",
"crypto-js": "^4.1.1",
"csurf": "^1.11.0",
"csv-parse": "^5.3.2",
"dayjs": "^1.11.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"formik": "^2.2.9",
"gapi-script": "^1.2.0",
"helmet": "^6.0.0",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-custom": "^1.1.1",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"rc-scrollbars": "^1.1.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intl": "^6.2.1",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3",
"react-toastify": "^9.1.1",
"redis": "^4.5.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"uuid": "^9.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@nrwl/cli": "15.0.13",
"@nrwl/cypress": "15.0.13",
"@nrwl/eslint-plugin-nx": "15.0.13",
"@nrwl/jest": "15.0.13",
"@nrwl/linter": "15.0.13",
"@nrwl/nest": "15.0.13",
"@nrwl/node": "15.0.13",
"@nrwl/react": "15.0.13",
"@nrwl/web": "15.0.13",
"@nrwl/workspace": "15.0.13",
"@testing-library/react": "13.4.0",
"@types/bcrypt": "^5.0.0",
"@types/connect-redis": "^0.0.19",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/jest": "28.1.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.18",
"@types/passport": "^1.0.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-local": "^1.0.34",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-jest": "28.1.1",
"cypress": "^10.7.0",
"eslint": "~8.15.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.8",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"nx": "15.0.13",
"prettier": "^2.6.2",
"prisma": "^4.6.1",
"react-test-renderer": "18.2.0",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2"
},
"prisma": {
"schema": "apps/api/src/prisma/Ricly.prisma"
}
}