-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
116 lines (116 loc) · 3.2 KB
/
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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "mydogemask",
"private": true,
"scripts": {
"dev": "next dev",
"build": "./build.sh",
"build-scripts": "webpack --config ./webpack.config.js",
"start": "yarn dev",
"lint": "yarn eslint .",
"lint-fix": "yarn eslint --fix .",
"watch": "nodemon --exec \"yarn run build\"",
"docs": "./docs.sh",
"postinstall": "npx patch-package"
},
"dependencies": {
"@mydogeofficial/dogecoin-js": "^0.1.0-beta.4",
"@native-base/icons": "^0.0.11",
"@native-base/next-adapter": "^1.1.9",
"axios": "^1.7.4",
"bip32": "2.0.4",
"bip39": "^3.0.4",
"bitcoinjs-lib": "5.2.0",
"bitcoinjs-message": "^2.2.0",
"bitcore-lib-doge": "https://github.com/mydoge-com/bitcore-lib-doge",
"bn.js": "=5.2.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",
"dotenv": "^16.4.5",
"elliptic": "^6.5.7",
"expo-font": "^10.0.3",
"ky": "^0.33.1",
"multicoin-address-validator": "0.5.10",
"native-base": "3.4.28",
"next": "12.0.4",
"qrcode": "1.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.7.1",
"react-native": "^0.67.3",
"react-native-safe-area-context": "^4.1.2",
"react-native-svg": "^12.1.1",
"react-native-tab-view": "^3.5.2",
"react-native-web": "^0.17.7",
"react-native-web-linear-gradient": "^1.1.2",
"react-no-ssr": "^1.1.0",
"react-router-dom": "^6.23.1",
"satoshi-bitcoin": "1.0.5",
"secure-ls": "^1.2.6",
"swr": "^2.2.5",
"timeago-react": "^3.0.5",
"wif": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.6",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@types/react": "^18.3.3",
"babel-loader": "8.3.0",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"babel-preset-expo": "^8.5.1",
"clean-jsdoc-theme": "^4.3.0",
"command-line-args": "^6.0.0",
"eslint": "7",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-transpile-modules": "^9.0.0",
"node-polyfill-webpack-plugin": "^3.0.0",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"typescript": "4.4.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"watch": {
"build": {
"extensions": "js,jsx,css,scss",
"patterns": "./",
"ignore": [
"node_modules",
"build",
"./scripts/compiled",
"./scripts/node_modules",
"out",
".next",
"./*.log"
],
"verbose": true,
"delay": 1000
}
},
"nodemonConfig": {
"ignore": [
"node_modules/**",
"build/**",
"scripts/compiled/**",
"scripts/node_modules/**",
"out/**",
".next/**",
"**.log"
],
"delay": 500
},
"packageManager": "yarn@1.22.22"
}