-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "btc-tooling",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/",
"trace-deprecation": "NODE_OPTIONS='--trace-deprecation' next dev",
"find-deps": "npx depcheck",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@vercel/analytics": "^1.5.0",
"axios": "^1.8.4",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"events": "^3.3.0",
"next": "16.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"timers-browserify": "^2.0.12",
"util": "^0.12.5",
"ws": "^8.18.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/socket.io-client": "^3.0.0",
"@types/xml2js": "^0.4.14",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}