-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "e-voting-platform",
"version": "1.0.0",
"description": "E-Voting Platform",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"dependencies": {
"@truffle/hdwallet-provider": "^2.1.8",
"ganache": "^7.7.4",
"truffle": "^5.4.23",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@typechain/truffle-v5": "^8.0.1",
"@typechain/web3-v1": "^6.0.2",
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/web3": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.8.4",
"truffle-assertions": "^0.9.2",
"truffle-typings": "^1.0.8",
"typechain": "^8.1.0",
"typescript": "^4.5.4"
},
"scripts": {
"start": "truffle migrate --reset --compile-all",
"test:ganache": "ganache -p 8546 -i 2 --quiet",
"test:truffle": "truffle test --network testing",
"test": "npm run test:ganache & npm run test:truffle",
"posttest": "kill $(lsof -t -i:8546)",
"ganache": "ganache -p 8545 -i 1",
"compile": "truffle compile && npm run generate-types",
"generate-types": "typechain --target=web3-v1 'build/contracts/*.json' --always-generate-overloads --discriminate-types"
},
"keywords": [
"e-voting",
"blockchain",
"voting"
],
"author": "Franz Guzman",
"license": "MIT"
}