-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.63 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
{
"scripts": {
"test": "node 'node_modules/.bin/jest'",
"test:watch": "node 'node_modules/.bin/jest' --watch",
"test:integration": "jest --config ./jest.integration.config.js",
"build": "nest build",
"start": "nest start",
"lint": "eslint 'src/**/*.ts'",
"lint:debug": "eslint 'src/**/*.ts' --debug",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"lint:fix:debug": "eslint 'src/**/*.ts' --fix --debug",
"lint:fix:dry-run": "eslint --fix-dry-run . -- --ext .ts",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"migrations:create": "ts-node -r dotenv/config node_modules/.bin/knex --knexfile src/infrastructure/repositories/offchain/knex-postgres.config.ts migrate:make -x ts",
"migrations:down": "ts-node -r dotenv/config node_modules/.bin/knex migrate:down --knexfile src/infrastructure/repositories/offchain/knex-postgres.config.ts",
"migrations:down-all": "ts-node -r dotenv/config node_modules/.bin/knex migrate:rollback --all --knexfile src/infrastructure/repositories/offchain/knex-postgres.config.ts",
"migrations": "ts-node -r dotenv/config node_modules/.bin/knex migrate:latest --knexfile src/infrastructure/repositories/offchain/knex-postgres.config.ts",
"migrations:prod": "knex migrate:latest --knexfile dist/infrastructure/repositories/offchain/knex-postgres.config.js",
"healthcheck": "ts-node src/cli.ts healthcheck",
"healthcheck:prod": "node dist/cli.js healthcheck",
"migrations:unlock": "ts-node -r dotenv/config node_modules/.bin/knex migrate:unlock --knexfile src/infrastructure/repositories/offchain/knex-postgres.config.ts"
},
"_moduleAliases": {
"@domain": "dist/domain",
"@infrastructure": "dist/infrastructure"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nestjs/common": "^9.1.6",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.1.6",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.1.6",
"@nestjs/schedule": "^2.1.0",
"@nestjs/swagger": "^6.1.3",
"@nestjs/terminus": "^9.1.4",
"@nestjs/throttler": "^3.1.0",
"alchemy-sdk": "^2.2.3",
"babel-jest": "^29.3.1",
"cron": "^2.1.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"helmet": "^6.2.0",
"jsonwebtoken": "^9.0.2",
"knex": "^2.3.0",
"knex-stringcase": "^1.4.6",
"luxon": "^3.4.4",
"module-alias": "^2.2.2",
"nest-commander": "^3.4.0",
"node-discord-logger": "^1.2.2",
"nodemailer": "^6.9.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"pino": "^8.7.0",
"qrcode-pix": "5.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7",
"siwe": "^2.1.4",
"ts-jest": "^29.0.3",
"uuid": "^9.0.0",
"uuid-encoder": "^1.2.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@nestjs/cli": "^9.1.5",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@typechain/hardhat": "^6.1.4",
"@types/cron": "^2.0.0",
"@types/jest": "^29.2.3",
"@types/jsonwebtoken": "^9.0.5",
"@types/nodemailer": "^6.4.7",
"@types/passport-local": "^1.0.34",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-typescript": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}