-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.01 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
{
"name": "capstone",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "nodemon src/server/main.js -w src/server",
"start": "NODE_ENV=production node src/server/main.js",
"build": "vite build",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"convertModels": "node convertModelsToObjects.js"
},
"dependencies": {
"@clerk/clerk-react": "^4.20.5",
"@clerk/clerk-sdk-node": "^4.10.12",
"@clerk/themes": "^1.7.5",
"@headlessui/react": "^1.7.15",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-context-menu": "^2.1.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@react-three/drei": "^9.77.0",
"@react-three/fiber": "^8.13.3",
"@react-three/postprocessing": "^2.14.11",
"@reduxjs/toolkit": "^1.9.5",
"@stripe/stripe-js": "^1.54.1",
"@tanstack/react-table": "^8.9.3",
"axios": "^1.4.0",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"history": "^5.3.0",
"lucide-react": "^0.244.0",
"pg": "^8.11.0",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-redux": "^8.1.0",
"react-router-dom": "^6.13.0",
"redux-logger": "^3.0.6",
"sequelize": "^6.32.1",
"stripe": "^12.12.0",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6",
"vite-express": "^0.9.1"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.0.1",
"autoprefixer": "^10.4.14",
"nodemon": "^2.0.20",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"vite": "^4.0.4"
}
}