-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·96 lines (96 loc) · 3.87 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "validator_rln_messenger",
"version": "0.1.0",
"description": "Private message sharing for Beacon Chain Validators https://hackmd.io/BRda81jvTf6OC7HUYiYSvA",
"repository": {
"type": "git",
"url": "https://github.com/AtHeartEngineering/rln-validator-messaging.git"
},
"scripts": {
"contract:build": "npm run contract:clean && npm run contract:compile",
"contract:clean": "npx hardhat clean",
"contract:compile": "npx hardhat compile",
"contract:test": "npx hardhat test --network localhost",
"contract:coverage": "npm run contract:build && npx hardhat coverage --temp artifacts --testfiles test/contract.ts",
"contract:deploy": "npx hardhat deploy --network hardhat",
"contract:node": "npm run contract:build && npx hardhat node",
"client:build": "webpack --config ./client/webpack.config.js",
"client:devserver": "DEBUG=express:* nodemon --watch \"./client/dist/**/*\" --inspect --delay 1 ./client/dist/server.js",
"client:watch": "NODE_ENV=development npm run client:build",
"client:run": "node ./client/dist/server.js",
"client:test": "ts-mocha -p tsconfig.json ./client/test/*.ts --exit",
"docker:build": "docker build -t rln-client .",
"build": "npm run contract:build && npm run contract:deploy && npm run client:build && npm run docker:build"
},
"author": "AtHeartEngineer <[email protected]> (https://github.com/AtHeartEngineer)",
"license": "MIT",
"dependencies": {
"@chainsafe/bls": "^6.0.3",
"@chainsafe/bls-keygen": "^0.3.0",
"@chainsafe/blst": "^0.2.3",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.1.0",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@zk-kit/identity": "^1.2.0",
"@zk-kit/protocols": "^1.2.4",
"body-parser": "^1.19.1",
"bootstrap": "^5.1.3",
"chai-http": "^4.3.0",
"circomlibjs": "^0.1.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ethers": "^5.5.4",
"express": "^4.17.2",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"path": "^0.12.7",
"typescript": "^4.2.4"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.26.0",
"@graphprotocol/graph-ts": "^0.24.1",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@popperjs/core": "^2.11.2",
"@testing-library/vue": "^6.4.2",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@vue/cli-plugin-unit-mocha": "~4.5.0",
"@vue/compiler-sfc": "^3.2.26",
"@vue/test-utils": "^2.0.0-rc.18",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cipher-base": "^1.0.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"ethereum-waffle": "^3.3.0",
"hardhat": "^2.8.3",
"hardhat-deploy": "^0.10.4",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"mocha": "^9.1.3",
"mustache": "^4.2.0",
"nodemon": "^2.0.15",
"sinon": "^13.0.1",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-loader": "^9.2.6",
"ts-mocha": "^9.0.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typechain": "^6.1.0",
"vue": "^3.2.26",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"vuex": "^4.0.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
}
}