forked from Jaimeloeuf/Gasless-Relayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.38 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
{
"name": "gasless-relayer",
"version": "0.0.1",
"description": "Relayer for Gasless transactions",
"main": "./src/index.js",
"scripts": {
"develop": "nodemon ./src/index.js",
"develop-inspect": "nodemon --inspect-brk ./src/index.js",
"start": "node ./src/index.js",
"buildDocs": "rimraf ./docs && jsdoc -c ./jsdocConfiguration.json -r -d ./docs",
"develop-docs": "nodemon -x npm run buildDocs",
"lint:js": "./node_modules/.bin/eslint --ignore-path .gitignore --fix **/*.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jaimeloeuf/Gasless-Relayer.git"
},
"author": "JJ",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jaimeloeuf/Gasless-Relayer/issues"
},
"homepage": "https://github.com/Jaimeloeuf/Gasless-Relayer#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"wallet-abi": "git+https://github.com/Jaimeloeuf/wallet-abi.git",
"web3": "^1.2.4"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.0.26",
"docdash": "^1.1.1",
"eslint": "^6.6.0",
"jsdoc": "^3.6.3",
"jsdoc-export-default-interop": "^0.3.1",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"request": "^2.88.0",
"rimraf": "^3.0.0"
}
}