-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.59 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
62
63
64
65
66
67
68
69
70
{
"name": "nightfall_3",
"version": "0.0.1",
"description": "Optimistic Nightfall",
"main": "./nightfall-client/src/index.mjs",
"scripts": {
"test": "LOG_LEVEL=error mocha --timeout 0 --bail --exit test/e2e/protocol/*.test.mjs test/e2e/tokens/*.test.mjs",
"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": "LOG_LEVEL=error mocha --timeout 0 --bail --exit test/e2e/protocol/*.test.mjs ",
"test-gas": "mocha --timeout 0 --bail --exit test/e2e/gas.test.mjs ",
"test-e2e-tokens": "LOG_LEVEL=error mocha --timeout 0 --bail --exit test/e2e/tokens/*.test.mjs ",
"test-erc20-tokens": "LOG_LEVEL=error mocha --timeout 0 --bail --exit test/e2e/tokens/erc20.test.mjs ",
"lint": "eslint . --ext js,mjs,jsx,ts,tsx && find-unused-exports",
"prepare": "husky install",
"doc:build:sdk": "jsdoc -c jsdoc.json cli/lib/nf3.mjs",
"build-adversary": "node test/adversary/transpile-adversary.mjs",
"adversary-test": "mocha --timeout 0 --bail --exit test/adversary.test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EYBlockchain/optimistic-nightfall.git"
},
"author": "[email protected]",
"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-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"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.10",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"queue": "^6.0.2",
"web3": "^1.4.0",
"reconnecting-websocket": "^4.4.0",
"ws": "^7.5.0"
},
"dependencies": {
"async-mutex": "^0.3.2",
"docker-compose": "^0.23.13",
"general-number": "^1.0.1",
"typescript": "^4.6.2",
"web3": "^1.4.0"
}
}