forked from lukso-network/tools-mock-relayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.48 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
{
"name": "dummy-relayer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate-types": "typechain --target ethers-v5 --out-dir 'types/ethers-v5' './node_modules/@lukso/lsp-smart-contracts/artifacts/*.json'",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"**/**/*.ts\" --fix",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"dev": "yarn run generate-types && npx nodemon -r dotenv/config src/app.ts",
"start": "node -r dotenv/config build/src/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@erc725/erc725.js": "^0.16.0",
"@lukso/eip191-signer.js": "^0.2.2",
"@lukso/lsp-smart-contracts": "^0.10.3",
"@types/express": "^4.17.16",
"@types/node": "^18.11.18",
"dotenv": "^16.0.3",
"ethers": "5.6.2",
"express": "^4.18.2",
"http-status": "^1.6.2",
"typescript": "^4.9.5",
"winston": "^3.8.2"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^45.0.2",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typechain": "^8.1.1"
}
}