-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.07 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
{
"name": "enecuum-wallet-extension",
"version": "1.0.0",
"description": "",
"main": "main.js",
"target": "esnext",
"module": "commonjs",
"scripts": {
"start": "webpack --watch",
"make": "NODE_ENV=production webpack",
"make:rebuild": "NODE_ENV=production webpack --watch",
"test": "mocha --require babel-mocha.js",
"electron": "electron ./dist",
"pack": "electron-builder --win --mac --linux -c.mac.identity=null \n cp 'desktop/Enecuum Setup 1.0.0.exe' download/enecuum.exe \n cp 'desktop/Enecuum-1.0.0-arm64.dmg' download/enecuum.dmg",
"prod": "pm2 start ./ecosystem.config.js --only prod",
"stop": "pm2 stop prod",
"ci": "pm2 start ./ecosystem.config.js --only ci",
"ci stop": "pm2 stop ci",
"ios sync": "npx cap sync ios",
"android sync": "npx cap sync android",
"ios": "npx cap copy ios",
"android": "npx cap copy android"
},
"build": {
"appId": "app.enecuum.com",
"directories": {
"app": "./dist",
"output": "./desktop"
},
"mac": {
"category": "public.app-category.finance",
"icon": "./dist/images/mac.icns"
},
"win": {
"icon": "./dist/images/s512.png"
}
},
"author": "Enecuum",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/eslint-parser": "^7.12.13",
"@babel/eslint-plugin": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.12.13",
"@types/react": "^18.0.1",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^10.2.4",
"create-file-webpack": "^1.0.2",
"css-loader": "^6.7.1",
"electron": "^22.0.2",
"electron-builder": "^24.0.0-alpha.12",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.4.0",
"git-revision-webpack-plugin": "^5.0.0-1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.3.5",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@capacitor-community/firebase-analytics": "^4.0.0",
"@capacitor/android": "^3.4.3",
"@capacitor/app": "^1.1.1",
"@capacitor/camera": "^1.3.1",
"@capacitor/cli": "^3.4.3",
"@capacitor/clipboard": "^1.0.8",
"@capacitor/core": "^3.5.1",
"@capacitor/ios": "^3.4.3",
"@capacitor/local-notifications": "^1.1.0",
"@capacitor/share": "^1.1.2",
"@capacitor/status-bar": "^1.0.8",
"@ionic/react": "^6.3.8",
"@ledgerhq/hw-app-eth": "^6.6.0",
"@ledgerhq/hw-transport-webhid": "^6.11.2",
"@ledgerhq/hw-transport-webusb": "^6.6.0",
"@robingenz/capacitor-background-task": "^1.0.1",
"alchemy-sdk": "^2.4.3",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"capacitor-native-biometric": "4.1.3",
"crypto-browserify": "^1.0.9",
"dotenv": "^16.0.0",
"enq-web3": "^0.5.3",
"express": "^4.17.1",
"firebase": "^9.19.1",
"jsrsasign": "^10.5.26",
"key-encoder": "^2.0.3",
"qrcode": "^1.5.1",
"react": "^18.0.0",
"react-async": "^10.0.1",
"react-dev-utils": "^12.0.0",
"react-dom": "^18.0.0",
"secp256k1": "^4.0.2",
"stream-browserify": "^3.0.0",
"workbox-core": "^6.2.4",
"workbox-expiration": "^6.2.4",
"workbox-precaching": "^6.2.4",
"workbox-routing": "^6.2.4",
"workbox-strategies": "^6.2.4"
}
}