thunderhub/server/package.json
2020-02-27 07:19:08 +01:00

56 lines
1.6 KiB
JSON

{
"name": "thunderhub",
"version": "0.1.3",
"description": "",
"main": "index.js",
"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": "",
"license": "ISC",
"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.10.1",
"base64url": "^3.0.1",
"date-fns": "^2.10.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.14.7",
"underscore": "^1.9.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/webpack-env": "^1.15.1",
"clean-webpack-plugin": "^3.0.0",
"husky": "^4.2.3",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}