-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "beacon-dao",
"version": "0.1.0",
"description": "Smart contracts implementing the Vision Beacon DAO.",
"main": "./dist/index.js",
"repository": "git@github.com:vision-dao/value-tree.git",
"author": "Dowland Aiello <dowlandaiello@gmail.com>",
"license": "MIT",
"private": true,
"types": "./dist/index.d.ts",
"files": [
"contracts/**",
"dist/**"
],
"devDependencies": {
"@ipld/dag-cbor": "^7.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"cypress": "^10.2.0",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.0.0",
"hardhat": "^2.9.9",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-deploy": "^0.11.10",
"ipfs": "0.62.2",
"ipfs-core": "0.14.2",
"ipld-schema": "^2.0.2",
"ts-node": "^10.8.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"scripts": {
"prepack": "yarn tsc --build ./tsconfig.build.json",
"build": "yarn hardhat compile && yarn run hardhat export-abi --no-compile"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"ethers": "^5.6.9",
"ipld-schema-validator": "https://github.com/Vision-DAO/js-ipld-schema-validator"
},
"packageManager": "yarn@3.2.1"
}