-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.91 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
{
"name": "astar-token-api",
"version": "1.0.1",
"description": "Astar Network token API",
"private": true,
"keywords": [
"astar-network",
"typescript",
"api"
],
"homepage": "https://github.com/AstarNetwork/astar-token-api",
"bugs": {
"url": "https://github.com/AstarNetwork/astar-token-api.git/issues"
},
"author": {
"name": "Bobo K.",
"url": "https://github.com/bobo-k2"
},
"repository": {
"type": "git",
"url": "https://github.com/AstarNetwork/astar-token-api.git"
},
"main": "build/index.js",
"scripts": {
"serve:firebase": "yarn build && firebase emulators:start --only functions",
"shell:firebase": "yarn build && firebase functions:shell",
"build": "tsc --project tsconfig.json && node ./src/swagger.js api.astar.network",
"dev": "yarn swagger-autogen && ts-node-dev -r dotenv/config src/index.ts",
"build:swagger": "yarn swagger-autogen api.astar.network",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix && prettier -w .",
"lint:check": "eslint '*/**/*.{js,ts}' && prettier -c .",
"test": "jest",
"swagger-autogen": "node src/swagger.js",
"deploy": "firebase deploy"
},
"engines": {
"node": "18"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/cors": "^2.8.13",
"@types/dedent": "^0.7.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.2",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-jest": "^29.6.3",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.3",
"jest-config": "^29.6.3",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.4.3"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.16.7",
"@discordjs/rest": "^0.1.0-canary.0",
"@polkadot/api": "^10.9.1",
"@polkadot/api-contract": "10.9.1",
"@polkadot/keyring": "^12.3.2",
"@polkadot/util": "^12.3.2",
"@polkadot/util-crypto": "^12.3.2",
"abi-decoder": "^2.4.0",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"ethers": "^6.7.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"firebase-admin": "^11.10.1",
"firebase-functions": "^4.4.1",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13",
"swagger-autogen": "^2.23.5",
"web3": "^4.1.0"
}
}