-
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) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 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": "hardhat-project",
"version": "0.1.0",
"private": true,
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"argon2": "^0.31.0",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "~1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"hardhat": "^2.17.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"moralis": "^2.22.4",
"pako": "^2.1.0",
"pg": "^8.11.2",
"sanitize-html": "^2.11.0",
"typeorm": "^0.3.17",
"web3": "^4.0.3",
"winston": "^3.10.0"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.9.2",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.10",
"@types/sanitize-html": "^2.9.0",
"@types/supertest": "^2.0.12",
"mocha": "^10.8.2",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.3"
},
"scripts": {
"start": "nodemon --exec ts-node app.ts",
"start-node": "hardhat node",
"deploy": "hardhat run --network localhost scripts/deploy.ts",
"clean": "hardhat clean",
"test": "npm run test:server && npm run test:contracts",
"test:server": "mocha --require ts-node/register test/*.test.ts",
"test:contracts": "mocha --require ts-node/register/transpile-only contracts/test/*.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/ByitR13x/BlockChain-api.git"
}
}