-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1010 Bytes
/
package.json
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
{
"name": "bitcoin-wallet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint ."
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@heroicons/react": "^2.1.3",
"@reduxjs/toolkit": "^2.2.3",
"@svgr/webpack": "^8.1.0",
"bitcoinjs-lib": "^6.1.5",
"classnames": "^2.5.1",
"ecpair": "^2.1.0",
"next": "14.2.1",
"react": "^18",
"react-dom": "^18",
"react-redux": "^9.1.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.2.5",
"typescript": "^5"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
}
}