-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.19 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.19 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "chatterpay-backend",
"license": "MIT",
"private": false,
"author": "P4-games",
"version": "1.0.0",
"description": "Crypto at a message's distance!",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"type-check": "tsc --noEmit",
"lint": "biome lint .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"pre-commit": "bun run lint:fix && bun run type-check",
"create-env": "printenv > .env",
"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": "rm -rf node_modules/.vite node_modules/.vitest && vitest",
"test:coverage": "vitest --coverage"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.1.0",
"@types/node-cache": "^4.2.5",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"mongodb-memory-server": "^10.1.3",
"typescript": "^5.9.2",
"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",
"@openzeppelin/contracts": "^5.0.2",
"@pinata/sdk": "^2.1.0",
"@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",
"bip39": "^3.1.0",
"dotenv": "^16.4.5",
"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",
"fs-extra": "^11.3.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.5.4",
"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"
},
"overrides": {
"chalk": "5.3.0",
"strip-ansi": "7.1.0",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"is-core-module": "2.13.1",
"error-ex": "1.3.2",
"has-ansi": "5.0.1"
},
"resolutions": {
"node-fetch": "2.6.12",
"vite": "5.4.11"
},
"trustedDependencies": [
"es5-ext"
],
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}