-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "able-alliance",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"dev:turbo": "next dev --turbopack",
"dev:server": "node websocket-server/index.mjs",
"build": "next build --turbopack",
"start": "next start",
"seed": "npx tsx scripts/seed.ts",
"test:ws": "npx tsx scripts/test-websocket.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier --check .",
"prettier-format": "prettier --write ."
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/themes": "^3.3.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"fast-xml-parser": "^4.5.3",
"jsonwebtoken": "^9.0.3",
"juno-sdk": "^0.0.10",
"mapbox-gl": "^3.21.0",
"mongoose": "^8.1.2",
"next": "^16.2.3",
"next-auth": "^5.0.0-beta.30",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-use": "^17.6.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.15.9",
"@tailwindcss/postcss": "^4.1.18",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.5",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"tailwindcss": "^4.1.18",
"typescript": "^5"
}
}