-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "spellbloc-contracts",
"version": "1.0.0",
"description": "Smart contracts for SpellBloc - Celo Proof of Ship submission",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "npm run test:security && npm run test:contracts",
"test:contracts": "hardhat test",
"test:security": "node tests/server-auth.test.js && node tests/auth-manager.test.js",
"coverage": "hardhat coverage",
"deploy:alfajores": "hardhat run scripts/deploy-celo-mainnet.js --network alfajores",
"deploy:celo": "hardhat run scripts/deploy-celo-mainnet.js --network celo",
"deploy:payments:alfajores": "hardhat run scripts/deploy-payments.js --network alfajores",
"verify:celo": "hardhat verify --network celo",
"node": "hardhat node",
"clean": "hardhat clean",
"start": "node server.js"
},
"keywords": [
"solidity",
"ethereum",
"celo",
"education",
"nft",
"defi",
"minipay"
],
"author": "SpellBloc Team",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.2",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/contracts": "^4.9.6",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"chai": "^4.5.0",
"dotenv": "^16.6.1",
"ethers": "^6.17.0",
"hardhat": "^2.28.6",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.17",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^7.0.2"
},
"dependencies": {
"@celo/contractkit": "^5.2.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.6",
"express": "^4.22.2",
"jsonwebtoken": "^9.0.3"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/llinsss/Wordbloc.git"
},
"type": "commonjs",
"bugs": {
"url": "https://github.com/llinsss/Wordbloc/issues"
},
"homepage": "https://github.com/llinsss/Wordbloc#readme"
}