-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "webauthn-browser-signature",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "node src/server/server-loader.js",
"lint": "tslint -c tslint.json src/**/*.ts",
"lint-fix": "tslint -c tslint.json src/**/*.ts --fix",
"build": "webpack",
"start": "./scripts/start.sh",
"stop": "./scripts/stop.sh",
"setup": "./scripts/setup.sh",
"clean": "./scripts/clean.sh",
"unlock-wallet": "./scripts/unlock-wallet.sh",
"cleos": "./scripts/cleos.sh"
},
"keywords": [],
"author": {
"name": "block.one",
"url": "https://block.one/"
},
"license": "MIT",
"devDependencies": {
"@types/cbor": "^2.0.0",
"@types/express": "^4.16.1",
"@types/node": "^11.13.7",
"@types/node-fetch": "^2.3.3",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@types/text-encoding": "^0.0.35",
"css-loader": "^2.1.1",
"express": "^4.16.4",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.3",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-middleware": "^3.6.2",
"webpack-hot-middleware": "^2.24.4"
},
"dependencies": {
"@types/elliptic": "^6.4.6",
"cbor": "^4.1.5",
"elliptic": "^6.4.1",
"eosjs": "file:external/eosjs",
"eosjs-ecc": "^4.0.4",
"node-fetch": "^2.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"text-encoding": "^0.7.0"
}
}