-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.74 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
97
98
99
100
101
{
"name": "agora",
"version": "0.10.0",
"description": "A confidentiality-first electronic voting system",
"author": {
"name": "nova collective",
"email": "[email protected]",
"url": "https://github.com/nova-collective"
},
"funding": {
"type": "GoFundMe",
"url": "https://www.gofundme.com/f/agora-sistema-di-voto-basato-su-blockchain"
},
"main": "index.js",
"private": true,
"directories": {
"doc": "docs"
},
"scripts": {
"commit": "./script/commit",
"compile": "npx hardhat compile",
"coverage-contracts": "npx hardhat coverage",
"deploy-contract": "./script/deploy",
"duplicated": "npx jscpd",
"integrate-external-libs": "./script/lib-integration",
"lint": "npx lint-staged",
"node:start": "npx hardhat node",
"prepare": "husky prepare",
"prepare-commit": "git-cz",
"test-contracts": "npx hardhat test",
"test-scripts": "jest --coverage --bail --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nova-collective/agora.git"
},
"keywords": [
"governance",
"voting",
"blockchain",
"zero-knowledge",
"zk-snarks",
"ethereum",
"solidity"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nova-collective/agora/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/nova-collective/agora#readme",
"engines": {
"node": ">=20.11.1",
"npm": "~10.2.4"
},
"dependencies": {
"dotenv": "^16.4.5",
"install": "^0.13.0",
"npm": "^10.6.0",
"zokrates-js": "^1.1.9"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/cz-commitlint": "^19.2.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"commitizen": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"hardhat": "^2.22.2",
"hardhat-deploy": "^0.12.2",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jscpd": "^3.5.10",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"solidity-coverage": "^0.8.11",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"validate-branch-name": "^1.3.0"
},
"validate-branch-name": {
"pattern": "^AG-\\d+(?:-[a-zA-Z]+)+$",
"errorMsg": "Invalid branch name \n Ex. Ag-<number>-text-description"
},
"lint-staged": {
"*.js": "prettier",
"*.ts": "eslint"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}