-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "gatechamp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:staging": "tsc && vite build --mode staging",
"start": "vite preview",
"cdn:prod": "node -r dotenv/config ./scripts/cdn.cjs dotenv_config_path=./.env.production"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.10",
"@mui/x-date-pickers": "^6.0.2",
"@sentry/react": "^7.42.0",
"@sentry/tracing": "^7.42.0",
"@stripe/react-stripe-js": "^1.16.5",
"@stripe/stripe-js": "^1.48.0",
"axios": "^1.3.4",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"js-cookie": "^3.0.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"react-toastify": "^9.1.1",
"react-use-websocket": "^4.3.1",
"recoil": "^0.7.6",
"recoil-persist": "^4.2.0",
"swr": "^2.0.3",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@types/js-cookie": "^3.0.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react-swc": "^3.0.0",
"dotenv": "^16.0.3",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-svgr": "^2.4.0"
}
}