-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.05 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
{
"name": "decentralised-scd-registry",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "hardhat clean && shx rm -rf deployments cache src/types",
"test": "hardhat test",
"compile": "hardhat compile",
"typechain": "hardhat typechain",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:check": "prettier --check --config .prettierrc \"**/*.{js,json,md,sol,ts}\"",
"lint": "npm run lint:sol && npm run lint:ts && npm run prettier:check",
"lint:sol": "solhint --config .solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config .eslintrc.yml --ignore-path .eslintignore --ext .js,.ts .",
"deploy": "hardhat deploy --network hardhat",
"deploy:container": "hardhat deploy --network ganache-cli",
"test:coverage": "hardhat coverage",
"test:gas": "cross-env GAS=true hardhat test",
"postinstall": "ts-node scripts/post-install.ts",
"query-scds-from-chain": "npx hardhat run scripts/query-scds-from-chain.ts",
"store-scds-in-bulk": "npx hardhat run scripts/store-scds-in-bulk.ts",
"performance-test-amount-of-scds": "npx hardhat run scripts/performance-test-amount-of-scds.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GarondEisenfaust/decentralised-scd-registry.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GarondEisenfaust/decentralised-scd-registry/issues"
},
"homepage": "https://github.com/GarondEisenfaust/decentralised-scd-registry#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.5.0",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/app-root-dir": "^0.1.1",
"@types/chai": "^4.3.0",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/klaw-sync": "^6.0.1",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.18",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"app-root-dir": "^1.0.2",
"chai": "^4.3.6",
"chai-ethers": "^0.0.1",
"cross-env": "^7.0.3",
"deep-equal-in-any-order": "^1.1.15",
"dotenv": "^16.0.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.2",
"ganache-cli": "^6.12.2",
"hardhat": "^2.8.4",
"hardhat-deploy": "^0.10.5",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.8",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.21",
"mocha": "^9.2.1",
"node-fetch": "^2.6.7",
"prettier": "^2.6.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"shx": "^0.3.4",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.20",
"solregex": "^0.3.1",
"ts-generator": "^0.1.1",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.14.1",
"typechain": "^7.0.0",
"typescript": "^4.5.5"
}
}