-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.53 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
{
"name": "dev.mimocontreras.ckbtc",
"version": "1.0.0",
"description": "ckBTC Payment Conector",
"main": "server.js",
"scripts": {
"start": "tsc -p tsconfig.json & node dist/src/server.js",
"start:dev": "nodemon",
"build": "tsc -p tsconfig.json",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts)\"",
"docker:build": "docker build -t app .",
"docker:up": "docker-compose up -d mysql app",
"docker:up:db": "docker-compose up -d mysql",
"docker:up:redis": "docker-compose up -d redis",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky install"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+ "
},
"keywords": [
"ckBTC",
"Bitcoin"
],
"author": "DitoBanx",
"license": "UNLICENSED",
"bugs": {
"url": " "
},
"homepage": " ",
"dependencies": {
"@dfinity/agent": "^0.19.3",
"@dfinity/candid": "^0.19.3",
"@dfinity/ckbtc": "^1.0.1",
"@dfinity/identity-secp256k1": "^0.19.3",
"@dfinity/ledger-icp": "^1.0.0",
"@dfinity/ledger-icrc": "^1.0.0",
"@dfinity/nns": "^2.0.0",
"@dfinity/principal": "^0.19.3",
"@dfinity/utils": "^1.0.0",
"@prisma/client": "5.5.2",
"axios": "^1.2.2",
"compression": "^1.7.4",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-fetch": "^4.0.0",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-limiter": "^1.6.1",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"global": "^4.4.0",
"ioredis": "^5.2.5",
"jsonwebtoken": "^9.0.0",
"lint-staged": "^15.0.2",
"mysql2": "^3.6.1",
"pino": "^8.16.1",
"pino-http": "^8.5.1",
"pino-pretty": "^10.2.3",
"prettier": "^3.0.3",
"prisma": "^5.5.2",
"treblle": "^1.3.0",
"tweetnacl": "^1.0.3",
"url-safe-base64": "^1.3.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/compression": "^1.7.2",
"@types/connect-redis": "^0.0.14",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/ioredis": "^5.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/sequelize": "^4.28.16",
"husky": "^8.0.3",
"junit": "^0.5.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}