-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "xcpfolio",
"version": "1.0.0-beta",
"description": "Premium Counterparty asset name marketplace",
"author": "21e14",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/XCP/xcpfolio.com"
},
"keywords": [
"counterparty",
"xcp",
"blockchain",
"bitcoin",
"marketplace"
],
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"generate-static": "tsx scripts/generate-static-data.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@tanstack/react-query": "^5.84.2",
"csv-parser": "^3.2.0",
"fathom-client": "^3.7.2",
"next": "15.4.10",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"tailwindcss": "^4",
"tsx": "^4.20.4",
"typescript": "^5"
}
}