thunderhub/server/package.json
Anthony Potdevin a9df78ac2d
Feat/view utxos (#15)
* feat: get and view utxos

* chore: bump version
2020-04-01 15:32:32 +02:00

55 lines
1.6 KiB
JSON

{
"name": "thunderhub-server",
"version": "0.1.16",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.production.js",
"build:dev": "webpack --config webpack.development.js",
"start": "node dist/server",
"dev": "nodemon dist/server",
"deploy": "yarn build && eb deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apotdevin/thunderhub.git"
},
"keywords": [],
"author": "apotdevin",
"license": "MIT",
"dependencies": {
"@types/graphql-depth-limit": "^1.1.2",
"@types/graphql-iso-date": "^3.3.3",
"@types/node-fetch": "^2.5.5",
"@types/underscore": "^1.9.4",
"apollo-server": "^2.11.0",
"base64url": "^3.0.1",
"date-fns": "^2.11.0",
"dotenv": "^8.2.0",
"graphql": "^14.6.0",
"graphql-depth-limit": "^1.1.0",
"graphql-iso-date": "^3.6.1",
"graphql-rate-limit": "^2.0.1",
"ln-service": "^47.16.0",
"underscore": "^1.10.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/webpack-env": "^1.15.1",
"clean-webpack-plugin": "^3.0.0",
"husky": "^4.2.3",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}