-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "devcommunity-io",
"private": false,
"version": "0.1.0",
"description": "DevCommunity frontend — React/Vite SPA with SEO server for the Web3 developer community platform",
"type": "module",
"author": "Dev-Community-IO",
"license": "Apache-2.0",
"homepage": "https://devcommunity.io",
"repository": {
"type": "git",
"url": "https://github.com/Dev-Community-IO/devcommunityIO.git"
},
"bugs": {
"url": "https://github.com/Dev-Community-IO/devcommunityIO/issues"
},
"keywords": [
"devcommunity",
"web3",
"react",
"vite",
"typescript",
"community",
"blockchain"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "concurrently -n \"VITE,SERVER\" -c \"cyan,magenta\" \"npm run dev:vite\" \"npm run dev:server\"",
"dev:vite": "vite",
"dev:server": "node server.js",
"build": "vite build",
"lint": "eslint .",
"preview": "npm run build && concurrently -n \"PREVIEW,SERVER\" -c \"green,magenta\" \"npm run preview:vite\" \"npm run preview:server\"",
"preview:vite": "vite preview",
"preview:server": "NODE_ENV=production node server.js",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"start": "node server.js",
"serve": "npm run build && npm run start"
},
"dependencies": {
"@chain-registry/types": "^2.0.213",
"@cosmos-kit/keplr-extension": "^2.17.1",
"@cosmos-kit/leap-extension": "^2.17.1",
"@cosmos-kit/react": "^2.24.1",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@lineiconshq/free-icons": "^1.0.6",
"@lineiconshq/react-lineicons": "^1.0.5",
"@supabase/supabase-js": "^2.57.4",
"axios": "^1.17.0",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"express": "^4.22.2",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.16.0",
"recharts": "^3.8.1"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.18",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"prettier": "^3.5.3",
"vite": "^6.4.3",
"vite-plugin-node-polyfills": "^0.28.0"
}
}