-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.75 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
{
"name": "coursehive",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "yarn env:staging vite",
"start:prod": "yarn env:production vite",
"dev": "start",
"build": "tsc && yarn env:staging vite build",
"build:prod": "tsc && yarn env:production vite build",
"preview": "vite preview",
"env:production": "dotenv -e .env.production",
"env:staging": "dotenv -e .env.development"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@heroicons/react": "^2.0.16",
"@mui/material": "^5.11.15",
"@reduxjs/toolkit": "^1.9.3",
"@tippyjs/react": "^4.2.6",
"body-scroll-lock": "^4.0.0-beta.0",
"express": "^4.18.2",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"mongoose": "^7.0.3",
"react": "^18.2.0",
"react-detect-click-outside": "^1.1.7",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-redux": "^8.0.5",
"react-router-dom": "^5.2.0",
"react-switch": "^7.0.0",
"react-textarea-autosize": "^8.4.1",
"redux-persist": "^6.0.0",
"scroll-lock": "^2.1.5",
"styled-components": "^5.3.6",
"swiper": "^9.2.0",
"uuid": "^9.0.0",
"vite-plugin-svgr": "^2.4.0"
},
"devDependencies": {
"@types/body-scroll-lock": "^3.1.0",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.2.0",
"@types/node": "^18.14.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.1.7",
"@types/scroll-lock": "^2.1.0",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"dotenv-cli": "^7.1.0",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}