This repository was archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@connext/vector-browser-node",
"version": "0.3.0-beta.2",
"author": "",
"license": "ISC",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"types"
],
"scripts": {
"build": "rm -rf dist && tsc && webpack --config ops/webpack.config.js",
"start": "node dist/index.js",
"test": "nyc ts-mocha --bail --check-leaks --exit --timeout 60000 'src/**/*.spec.ts'"
},
"dependencies": {
"@connext/vector-contracts": "0.3.0-beta.2",
"@connext/vector-engine": "0.3.0-beta.2",
"@connext/vector-types": "0.3.0-beta.2",
"@connext/vector-utils": "0.3.0-beta.2",
"@ethersproject/address": "5.2.0",
"@ethersproject/bignumber": "5.2.0",
"@ethersproject/constants": "5.2.0",
"@ethersproject/providers": "5.2.0",
"@ethersproject/solidity": "5.2.0",
"@ethersproject/wallet": "5.2.0",
"@sinclair/typebox": "0.12.7",
"ajv": "6.12.6",
"axios": "0.21.1",
"dexie": "3.0.3",
"pino": "6.11.1"
},
"devDependencies": {
"@types/chai": "4.2.15",
"@types/chai-as-promised": "7.1.3",
"@types/mocha": "8.2.1",
"@types/node": "14.14.31",
"@types/webpack": "4.41.26",
"babel-loader": "8.1.0",
"chai": "4.3.1",
"chai-as-promised": "7.1.1",
"copy-webpack-plugin": "6.2.1",
"fake-indexeddb": "3.1.2",
"mocha": "8.3.0",
"nyc": "15.1.0",
"pino-pretty": "4.6.0",
"sinon": "10.0.0",
"ts-loader": "8.0.7",
"ts-mocha": "8.0.0",
"ts-node": "9.1.1",
"ts-nats": "1.2.15",
"typescript": "4.2.4",
"webpack": "4.44.2",
"webpack-cli": "4.1.0"
}
}