-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.33 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
{
"name": "seedifyuba",
"version": "1.0.0",
"description": "Seedifyuba es un proyecto hecho con fines educativos donde los usuarios pueden crear proyectos que son fundeados por inversores angeles(con inversiones tipo seed o semillas) y cada proyecto tiene asignado un revisor que es el encargado de revisar que el mismo avance. NO USAR EN PRODUCCION!",
"author": "",
"license": "ISC",
"dependencies": {
"fastify-cors": "^6.0.2",
"fastify-swagger": "^4.8.2",
"hardhat": "2.0.6",
"hardhat-deploy": "0.7.4",
"hardhat-deploy-ethers": "0.3.0-beta.7",
"mongodb": "^3.6.9",
"solc": "0.7.4"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "12.0.1",
"@ethersproject/abstract-signer": "5.0.6",
"@ethersproject/bignumber": "5.0.8",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.7",
"@nomiclabs/hardhat-solhint": "2.0.0",
"@nomiclabs/hardhat-waffle": "2.0.0",
"@openzeppelin/contracts": "3.4.0",
"@typechain/ethers-v5": "5.0.0",
"@types/chai": "4.2.13",
"@types/fs-extra": "9.0.1",
"@types/mocha": "8.2.0",
"@types/node": "14.14.25",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"bignumber.js": "9.0.1",
"chai": "4.2.0",
"dotenv": "8.2.0",
"eslint": "7.19.0",
"eslint-config-prettier": "6.12.0",
"ethereum-waffle": "3.2.0",
"ethers": "5.0.24",
"fastify": "3.14.2",
"fs-extra": "9.0.1",
"hardhat-contract-sizer": "2.0.2",
"hardhat-docgen": "1.0.3",
"hardhat-gas-reporter": "1.0.4",
"hardhat-preprocessor": "0.1.2",
"hardhat-prettier": "0.0.1",
"hardhat-typechain": "0.3.4",
"husky": "5.0.9",
"leafleth": "0.0.9",
"prettier": "2.2.1",
"prettier-plugin-solidity": "1.0.0-beta.5",
"shelljs": "0.8.4",
"solhint": "3.3.2",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.7.12",
"standard-version": "9.1.0",
"ts-generator": "0.1.1",
"ts-node": "9.1.1",
"typechain": "4.0.1",
"typescript": "4.1.3"
},
"comments": {
"dependencies": "hardhat-solhint includes an old version of solhint, that's why specific solhint dependency is added"
},
"types": "types/index.d.ts",
"files": [
"/contracts"
],
"keywords": [
"blockchain",
"ethereum",
"hardhat",
"smart-contracts",
"solidity"
],
"scripts": {
"prepare": "husky install",
"postinstall": "npm run compile",
"clean": "hardhat clean",
"compile": "hardhat compile",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"lint": "npm run lint:sol && npm run lint:ts && npm run prettier:list-different",
"lint:sol": "solhint --config .solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
"size-contracts": "hardhat size-contracts",
"docgen": "hardhat docgen",
"test": "hardhat test",
"deploy-kovan": "hardhat deploy --network kovan",
"deploy-local": "hardhat deploy --network hardhat",
"start": "node src/server"
}
}