forked from onflow/fcl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "@onflow/dev-wallet",
"version": "0.0.7",
"description": "dev wallet provider service for local development with the flow client library",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
"homepage": "https://onflow.org",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onflow/flow-js-sdk.git"
},
"bugs": {
"url": "https://github.com/onflow/flow-js-sdk/issues"
},
"main": "server/index.js",
"dependencies": {
"@onflow/fcl-config": "0.0.1",
"@onflow/fcl": "0.0.37",
"@onflow/types": "0.0.1",
"argon2": "0.26.2",
"body-parser": "1.19.0",
"chalk": "^4.0.0",
"clipboardy": "^2.3.0",
"compression": "1.7.4",
"cors": "2.8.5",
"elliptic": "^6.5.2",
"esm": "3.2.25",
"express": "4.17.1",
"express-graphql": "0.9.0",
"graphql": "15.0.0",
"latest-version": "^5.1.0",
"node-emoji": "^1.10.0",
"sha3": "^2.1.2",
"sqlite3": "4.1.1",
"uuid": "7.0.3"
},
"bin": {
"fcl-wallet": "./wallet"
},
"scripts": {
"prepublishOnly": "npm test && npm run build",
"build": "echo 'nothing to build'",
"test": "echo 'no tests yet'",
"start": "./wallet"
}
}