-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 KB
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
{
"name": "webauthn_signer",
"private": true,
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"generate": "concurrently 'ts-node src/server.ts' 'sleep 5s; open https://localhost:8443/generate.html'",
"transfer": "ts-node src/server.ts transfer",
"doctor": "ts-node src/server.ts doctor"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cbor": "^5.0.0",
"@types/debug": "^4.1.5",
"@types/elliptic": "^6.4.11",
"@types/express": "^4.17.2",
"@types/node": "^11.10.5",
"@types/node-fetch": "^2.5.4",
"cbor": "^5.0.1",
"debug": "^4.1.1",
"elliptic": "^6.5.2",
"eosjs": "^21.0.1-rc2",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"open": "^7.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"concurrently": "^5.0.2",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
}
}