-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "vticker",
"version": "0.1.0",
"private": false,
"description": "A CoinGecko-style analytics platform specialized for the Verus DeFi ecosystem",
"repository": {
"type": "git",
"url": "git+https://github.com/vdappdev2/vticker.git"
},
"homepage": "https://github.com/vdappdev2/vticker#readme",
"bugs": {
"url": "https://github.com/vdappdev2/vticker/issues"
},
"keywords": [
"verus",
"defi",
"cryptocurrency",
"analytics",
"blockchain",
"trading",
"nextjs"
],
"author": "vTicker Contributors",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@tanstack/react-query": "^5.90.10",
"next": "15.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^3.5.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "^15.0.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}