-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.77 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@vennbuild/cli",
"version": "1.0.12",
"description": "Venn Network CLI",
"author": "Venn Network",
"license": "MIT",
"keywords": [
"web3",
"security",
"ironblocks",
"cli",
"firewall",
"blockchain",
"ethereum",
"solidity",
"venn"
],
"repository": "https://github.com/ironblocks/cli",
"homepage": "https://github.com/ironblocks/cli#readme",
"bugs": {
"url": "https://github.com/ironblocks/cli/issues"
},
"bin": {
"venn": "dist/main.js"
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main.js",
"lint": "eslint \"{src,tests}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./tests/jest-e2e.json",
"publish:npm": "npm run build && npm pack && npm publish --access public && rm -rf *.tgz"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@safe-global/api-kit": "^2.3.0",
"@solidity-parser/parser": "^0.16.2",
"colors": "^1.4.0",
"consola": "^3.2.3",
"ethers": "^6.9.1",
"micromatch": "^4.0.5",
"nest-commander": "^3.12.2",
"ora": "^5.4.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"semver": "^7.5.4"
},
"devDependencies": {
"@automock/adapters.nestjs": "^2.1.0",
"@automock/jest": "^2.1.0",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.3.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.12",
"@types/micromatch": "^4.0.6",
"@types/node": "^20.3.1",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"nest-commander-testing": "^3.3.0",
"nodemon": "^3.1.5",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.2",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}