forked from EYBlockchain/nightfall_3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.01 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": "nightfall_3",
"version": "0.0.1",
"description": "Optimistic Nightfall",
"main": "./nightfall-client/src/index.mjs",
"scripts": {
"neg-test": "mocha --timeout 0 --bail --exit test/neg-http.mjs",
"neg-test-ropsten": "mocha --timeout 0 --bail --exit test/neg-http.mjs",
"test-e2e-protocol": "mocha --timeout 0 --bail --parallel --exit test/e2e/protocol/*.test.mjs ",
"test-gas": "mocha --timeout 0 --bail --exit test/e2e/gas.test.mjs ",
"test-e2e-tokens": "mocha --timeout 0 --bail --exit test/e2e/tokens/*.test.mjs ",
"lint": "eslint . --ext js,mjs,jsx && find-unused-exports",
"prepare": "husky install",
"doc:build:sdk": "jsdoc -c jsdoc.json cli/lib/nf3.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EYBlockchain/optimistic-nightfall.git"
},
"author": "duncan.westland@uk.ey.com",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/EYBlockchain/optimistic-nightfall/issues"
},
"homepage": "https://github.com/EYBlockchain/optimistic-nightfall#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"async-mutex": "^0.3.2",
"axios": "^0.21.4",
"babel-eslint": "^10.1.0",
"bip39": "^3.0.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chai-things": "^0.2.0",
"common-files": "file:./common-files",
"config": "^3.3.1",
"eslint": "^7.25.0",
"eslint-config-codfish": "^10.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react": "^7.26.1",
"fast-check": "^2.18.0",
"find-unused-exports": "^2.0.0",
"general-number": "^1.0.1",
"husky": "^6.0.0",
"jsdoc": "^3.6.7",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"queue": "^6.0.2",
"web3": "^1.4.0",
"ws": "^7.5.0"
},
"dependencies": {
"async-mutex": "^0.3.2",
"web3": "^1.4.0",
"docker-compose": "^0.23.13",
"general-number": "^1.0.1"
}
}