-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.35 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
{
"name": "@carmel/js",
"version": "1.2.0",
"description": "The Carmel JavaScript Library",
"scripts": {
"compile": "rm -rf lib && ./node_modules/.bin/tsc",
"test": "savor test",
"cov": "savor cov",
"viewcov": "savor viewcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluidtrends/carmel.git"
},
"author": "I. Dan Calinescu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fluidtrends/carmel/issues"
},
"keywords": [],
"homepage": "https://github.com/fluidtrends/carmel",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"src/**/*",
"assets/**/*",
"tsconfig.json"
],
"dependencies": {
"@koale/useworker": "^3.4.0",
"@types/axios": "^0.14.0",
"@types/bip38": "^2.0.1",
"@types/bs58": "^4.0.1",
"@types/deepmerge": "^2.2.0",
"@types/elliptic": "^6.4.12",
"@types/isomorphic-fetch": "0.0.35",
"@types/js-base64": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/randombytes": "^2.0.0",
"@types/react": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/scrypt-async": "^1.3.1",
"@types/wif": "^2.0.2",
"automerge": "^0.14.2",
"axios": "^0.21.1",
"bip32": "^2.0.6",
"bip38": "^3.1.1",
"bip39": "^3.0.3",
"bitcoinjs-lib": "^5.2.0",
"bitcoinjs-message": "^2.1.4",
"bowser": "^2.11.0",
"bs58": "^4.0.1",
"connected-react-router": "^6.9.1",
"debug": "^4.3.1",
"deepmerge": "^4.2.2",
"eosjs": "^21.0.3",
"eosjs-ecc": "^4.0.7",
"file-saver": "^2.0.5",
"immediate": "^3.3.0",
"ipfs": "^0.54.2",
"ipfs-http-client": "^49.0.2",
"isomorphic-fetch": "^3.0.0",
"js-base64": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"level": "^6.0.1",
"nanoid": "^3.1.20",
"randombytes": "^2.1.0",
"react": "^17.0.1",
"react-device-detect": "^1.15.0",
"react-hooks-worker": "^1.0.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"scrypt-async": "^2.0.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"wif": "^2.0.6"
},
"devDependencies": {
"savor": "^1.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}