-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "xp-rest",
"version": "0.0.1",
"description": "A Rest API Interface to XP.js Bridge.",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"format": "prettier . --write"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.11.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.0.1",
"eslint-plugin-import": "^2.25.3",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@elrondnetwork/erdjs": "^8.0.1-alpha.12",
"bignumber.js": "^9.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"express-winston": "^4.2.0",
"winston": "^3.3.3",
"xp.network": "git+https://github.com/xp-network/xpjs#master-dist"
}
}