-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "@xlnt/trusted-signer",
"version": "0.0.1",
"description": "Sign and verify signatures using web3 as a microservice.",
"scripts": {
"start": "micro lib/index.js",
"dev": "concurrently 'yarn run watch-ts' 'yarn run micro-dev'",
"micro-dev": "micro-dev lib/index.js -p 3002",
"build": "yarn run build-ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint --project .",
"docker:build": "docker build -t shrugs/trusted-signer:latest .",
"docker:push": "docker push shrugs/trusted-signer:latest",
"deploy": "yarn run build && yarn run docker-build && yarn run docker-push",
"now": "now",
"now:alias": "now alias",
"now:clean": "now rm @xlnt/trusted-signer --safe --yes",
"now:deploy": "yarn run build && yarn run now && yarn run now:alias && yarn run now:clean"
},
"files": [
"lib"
],
"repository": "https://github.com/XLNT/trusted-signer",
"keywords": [
"ethereum"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/XLNT/trusted-signer/issues"
},
"homepage": "https://github.com/XLNT/trusted-signer#readme",
"peerDependencies": {},
"dependencies": {
"@xlnt/micro-api-auth": "^1.0.0",
"eth-lib": "^0.2.8",
"lodash": "^4.17.10",
"micro": "^9.3.2",
"micro-visualize": "^3.0.1",
"microrouter": "^3.1.3",
"web3-utils": "^1.0.0-beta.34"
},
"devDependencies": {
"@types/node": "^10.1.1",
"concurrently": "^3.5.1",
"ganache-cli": "^6.1.8",
"micro-dev": "^3.0.0",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"publishConfig": {
"access": "public"
}
}