forked from mydoge-com/mydogemask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.49 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
{
"name": "mydogemask",
"private": true,
"scripts": {
"dev": "next dev",
"build": "./build.sh",
"start": "yarn dev",
"lint": "next lint",
"postinstall": "cd scripts && yarn install && cd ..",
"watch": "nodemon --exec \"yarn run build\""
},
"dependencies": {
"@mydogeofficial/dogecoin-js": "^0.1.0-beta.4",
"@native-base/icons": "^0.0.11",
"@native-base/next-adapter": "^1.1.9",
"axios": "^1.2.2",
"bip32": "2.0.4",
"bip39": "^3.0.4",
"bitcoinjs-lib": "4.0.5",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",
"expo-font": "^10.0.3",
"multicoin-address-validator": "0.5.10",
"native-base": "3.4.0",
"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-web": "^0.17.7",
"react-native-web-linear-gradient": "^1.1.2",
"react-no-ssr": "^1.1.0",
"satoshi-bitcoin": "1.0.5",
"secure-ls": "^1.2.6",
"timeago-react": "^3.0.5"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"babel-preset-expo": "^8.5.1",
"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.0",
"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",
"nodemon": "^2.0.20",
"prettier": "2.7.1"
},
"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
}
}