forked from omnistrate-oss/customer-portal
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.69 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
118
119
120
121
122
123
124
{
"name": "omnistrate-access-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon server.js",
"dev:test": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "next lint",
"format:check": "prettier --check --ignore-path .prettierignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"find:unused": "next-unused",
"update-api-types": "yarn rebuild puppeteer && node scripts/updateAPITypes.js",
"test:record": "HAR_MODE=record yarn playwright test",
"test:replay": "HAR_MODE=replay yarn playwright test",
"record": "yarn tsx scripts/record-hars.ts"
},
"next-unused": {
"alias": {},
"include": [],
"exclude": [],
"entrypoints": []
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@monaco-editor/react": "^4.6.0",
"@mui/icons-material": "^5.10.9",
"@mui/lab": "^5.0.0-alpha.116",
"@mui/material": "^5.15.13",
"@mui/material-nextjs": "^6.3.0",
"@mui/system": "^5.15.12",
"@mui/x-data-grid": "^5.17.18",
"@mui/x-date-pickers": "^7.6.2",
"@react-oauth/google": "^0.12.1",
"@reduxjs/toolkit": "^1.9.1",
"@stripe/react-stripe-js": "^6.3.0",
"@stripe/stripe-js": "^9.5.0",
"@tanstack/react-query": "^5.77.1",
"@tanstack/react-table": "^8.20.5",
"ansi-to-react": "^6.1.6",
"axios": "1.16.0",
"buffer": "^6.0.3",
"clipboardy": "^3.0.0",
"clsx": "^2.1.1",
"date-fns": "^2.29.3",
"dayjs": "^1.11.11",
"dompurify": "3.4.11",
"dotenv": "^16.4.5",
"dotted-map": "^2.2.3",
"ejs": "^3.1.10",
"express": "^4.21.2",
"formik": "^2.2.9",
"generate-password": "^1.7.1",
"isomorphic-dompurify": "^2.23.0",
"js-base64": "^3.7.5",
"js-cookie": "^3.0.7",
"jwt-decode": "^4.0.0",
"lodash": "^4.18.1",
"monaco-editor": "^0.52.0",
"next": "16.2.6",
"next-nprogress-bar": "^2.4.3",
"next-plugin-yaml": "^1.0.1",
"node-cron": "^3.0.3",
"nodemailer": "^9.0.1",
"openapi-fetch": "^0.14.0",
"openapi-react-query": "^0.5.0",
"prop-types": "^15.6.0",
"psl": "^1.15.0",
"react": "^19.2.4",
"react-date-range": "^1.4.0",
"react-dom": "^19.2.4",
"react-google-recaptcha": "^3.1.0",
"react-icons": "^4.9.0",
"react-infinite-scroller": "^1.2.6",
"react-json-view": "^1.21.3",
"react-redux": "^8.0.5",
"react-use-websocket": "^4.8.1",
"react-window": "^2.2.3",
"recharts": "^2.15.1",
"sass": "^1.56.1",
"sharp": "0.32.6",
"swagger-ui-react": "^5.29.5",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"yup": "^0.32.11"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.2",
"@inquirer/prompts": "^8.3.0",
"@playwright/test": "^1.60.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "20.14.11",
"@types/react-date-range": "1.4.0",
"@types/react-google-recaptcha": "^2.1.9",
"autoprefixer": "^10.4.20",
"eslint": "^8.56.0",
"eslint-config-next": "^15.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"next-unused": "^0.0.6",
"nodemon": "^3.1.0",
"openapi-typescript": "^7.8.0",
"postcss": "^8.5.10",
"prettier": "^3.1.0",
"puppeteer": "^24.3.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.22.4",
"typescript": "^5.8.3",
"wait-on": "^9.0.4"
},
"resolutions": {
"postcss": "^8.5.10",
"qs@~6.14.0": "^6.15.2",
"uuid": "14.0.0",
"form-data": "^4.0.6",
"shell-quote": "^1.8.4",
"dompurify": "3.4.11"
},
"packageManager": "yarn@4.5.0"
}