-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.06 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.06 KB
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
{
"name": "copernicspace-core",
"version": "0.1",
"description": "contracts and ts lib for copernic space",
"private": true,
"scripts": {
"test": "hardhat compile && hardhat test",
"lint:ts": "eslint \"./**/*{.ts,.tsx}\"",
"lint:sol": "solhint -f table contracts/**/*.sol",
"fix:ts": "prettier --write './**/*{.ts,.tsx}'",
"fix:sol": "prettier --write 'contracts/**/*.sol'",
"lint": "eslint \"./**/*{.ts,.tsx}\" && solhint contracts/**/*.sol",
"scribble:SpaceibleAsset": "scribble ./contracts/spaceibles/SpaceibleAsset.sol --output-mode files --arm --instrumentation-metadata-file md.json && yarn test && scribble ./contracts/spaceibles/SpaceibleAsset.sol --output-mode files --arm --instrumentation-metadata-file md.json || yarn clean:SpaceibleAsset",
"clean:SpaceibleAsset": "scribble ./contracts/spaceibles/SpaceibleAsset.sol --output-mode files --disarm --instrumentation-metadata-file md.json"
},
"engines": {
"node": ">=16.9.1",
"yarn": ">=v1.22.11"
},
"devDependencies": {
"@divergencetech/ethier": "^0.54.1",
"@nomicfoundation/hardhat-verify": "^1.1.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.8.2",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.2.22",
"@types/mocha": "^10.0.0",
"@types/node": "^18.17.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"chai": "^4.3.6",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.1",
"hardhat": "^2.13.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-log-remover": "^2.0.2",
"hardhat-tracer": "^2.1.2",
"mime": "^3.0.0",
"nft.storage": "^7.1.1",
"papaparse": "^5.4.1",
"prettier": "^2.8.5",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.0.2"
}
}