-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.22 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "chatterpay-backend",
"license": "MIT",
"private": false,
"author": "P4-games",
"version": "1.0.0",
"description": "Crypto a un mensaje de distancia!",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"generate-types": "typechain --target=ethers-v5 './scripts/artifacts/**/*.json'",
"dev": "bun --watch src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"create-env": "printenv > .env",
"pre-commit": "npm run format && npm run lint:fix",
"docker:build": "bash ./scripts/docker-build.sh",
"docker:run": "bash docker run -d -p 3000:3000 --name chatterpay-back-app-container chatterpay-back-app",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"devDependencies": {
"@types/bun": "latest",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.1.0",
"@types/node-cache": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitest/ui": "^2.1.8",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"mongodb-memory-server": "^10.1.3",
"prettier": "^3.2.5",
"vitest": "^2.1.8"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@dfinity/agent": "2.1.1",
"@dfinity/assets": "2.1.1",
"@dfinity/candid": "^2.1.1",
"@dfinity/identity": "2.1.1",
"@dfinity/principal": "2.1.1",
"@fastify/autoload": "^6.0.3",
"@fastify/cors": "^9.0.1",
"@fastify/rate-limit": "7.0.0",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "8.15.0",
"@fastify/swagger-ui": "4.0.1",
"@google-cloud/trace-agent": "^8.0.0",
"@lifi/sdk": "^2.5.1",
"@openzeppelin/contracts": "^5.0.2",
"@pinata/sdk": "^2.1.0",
"@pushprotocol/restapi": "^1.7.29",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"alchemy-sdk": "^3.3.1",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"bip39": "^3.1.0",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"ethers-5": "npm:ethers@^5.7.2",
"fastify": "^4.28.1",
"fastify-multer": "^2.0.3",
"fastify-plugin": "^5.0.1",
"fastify-rate-limit": "^5.9.0",
"form-data": "^4.0.0",
"graphql": "^16.9.0",
"graphql-request": "^5.1.0",
"husky": "^9.1.6",
"jsonwebtoken": "^9.0.2",
"logger": "^0.0.1",
"mongoose": "^8.9.4",
"node-cache": "^5.1.2",
"p-queue": "^8.0.1",
"pinata-web3": "^0.4.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"sharp": "^0.33.5",
"typechain": "^8.3.2",
"userop": "0.3.8",
"web3": "^4.11.1",
"x": "^0.1.2"
},
"trustedDependencies": [
"es5-ext"
],
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
}
}