-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.81 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
{
"name": "bagpipes-api",
"version": "0.3.0",
"description": "Bagpipes XCM api",
"main": "index.js",
"scripts": {
"build": "cp .env.example .env && npm install -f && tsc",
"api": "node dist/app.js",
"start": "NODE_ENV=development nodemon dist/app.js",
"test": "ts-node src/api/tests.ts",
"format": "npx prettier --write *.ts && npx prettier --write 'src/**/*.ts'",
"resetdb": "sh resetdb.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XcmSend/api.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/XcmSend/api/issues"
},
"homepage": "https://github.com/XcmSend/api#readme",
"dependencies": {
"@galacticcouncil/sdk": "^4.2.0",
"@polkadot/api": "^12.3.1",
"@polkadot/api-augment": "^12.3.1",
"@polkadot/api-base": "^12.3.1",
"@polkadot/api-contract": "^12.3.1",
"@polkadot/api-derive": "^12.3.1",
"@polkadot/extension-dapp": "^0.51.1",
"@polkadot/extension-inject": "^0.51.1",
"@polkadot/keyring": "^13.0.2",
"@polkadot/metadata": "^4.17.1",
"@polkadot/networks": "^13.0.2",
"@polkadot/phishing": "^0.23.3",
"@polkadot/rpc-augment": "^12.3.1",
"@polkadot/rpc-core": "^12.3.1",
"@polkadot/rpc-provider": "^12.3.1",
"@polkadot/types": "^12.3.1",
"@polkadot/types-augment": "^12.3.1",
"@polkadot/types-codec": "^12.3.1",
"@polkadot/types-create": "^12.3.1",
"@polkadot/types-known": "^12.3.1",
"@polkadot/types-support": "^12.3.1",
"@polkadot/ui-keyring": "^3.8.3",
"@polkadot/util": "^13.0.2",
"@polkadot/util-crypto": "^13.0.2",
"@polkadot/wasm-crypto": "^7.3.2",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/joi": "^17.2.3",
"@types/mongoose": "^5.11.97",
"@types/shortid": "^0.0.32",
"puppeteer": "22.15.0",
"assert": "^2.1.0",
"axios": "^1.7.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bs58": "^6.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"express-session": "^1.18.0",
"http": "^0.0.1-security",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.2",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.4",
"pako": "^2.1.0",
"proper-lockfile": "^4.1.2",
"shortid": "^2.2.16",
"socket.io": "^4.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"prettier": "3.3.3"
}
}