-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.05 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
{
"name": "transact",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "nodemon -w src/server -x tsx src/server/main.ts",
"start": "NODE_ENV=production tsx src/server/main.ts",
"build": "vite build"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@transitive-sdk/utils": "^0.12.12",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"express": "^4.18.2",
"express-session": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"lucide-react": "^0.451.0",
"next-themes": "^0.4.3",
"portfinder": "^1.0.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"react-leaflet": "^4.2.1",
"react-leaflet-drift-marker": "^4.0.0",
"react-router-dom": "^6.27.0",
"session-file-store": "^1.5.0",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.3.0",
"typescript": "^5.3.2",
"vite-express": "*"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@transitive-sdk/utils-web": "^0.13.0",
"@types/express": "^4.17.21",
"@types/leaflet": "^1.9.14",
"@types/node": "^20.16.11",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.2.16",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.11.0",
"nodemon": "^3.0.1",
"postcss": "^8.4.47",
"react-bootstrap": "^2.10.10",
"tailwindcss": "^3.4.13",
"typescript-eslint": "^8.9.0",
"vite": "^5.0.2"
}
}