thunderhub/package.json

58 lines
1.5 KiB
JSON
Raw Normal View History

2019-11-02 21:25:47 +01:00
{
"name": "thunderhub",
2019-11-06 06:56:45 +01:00
"version": "0.0.1",
2019-11-02 21:25:47 +01:00
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2019-11-02 23:04:07 +01:00
"build": "webpack --config webpack.development.js",
"start": "node dist/server",
"dev": "nodemon dist/server"
2019-11-02 21:25:47 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/apotdevin/thunderhub.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/apotdevin/thunderhub/issues"
},
"homepage": "https://github.com/apotdevin/thunderhub#readme",
"dependencies": {
2019-11-05 22:52:16 +01:00
"@types/graphql-depth-limit": "^1.1.2",
2019-11-07 07:53:11 +01:00
"@types/graphql-iso-date": "^3.3.3",
2019-11-17 00:23:28 +01:00
"@types/node-fetch": "^2.5.3",
2019-11-23 19:49:20 +01:00
"@types/underscore": "^1.9.4",
2019-11-02 21:25:47 +01:00
"apollo-server": "^2.9.7",
2019-11-23 19:49:20 +01:00
"date-fns": "^2.8.1",
2019-11-02 21:25:47 +01:00
"dotenv": "^8.2.0",
"graphql": "^14.5.8",
"graphql-depth-limit": "^1.1.0",
"graphql-iso-date": "^3.6.1",
"graphql-rate-limit": "^2.0.1",
"ln-service": "^46.6.0",
2019-11-23 19:49:20 +01:00
"underscore": "^1.9.1",
2019-11-02 21:25:47 +01:00
"winston": "^3.2.1"
},
"devDependencies": {
2019-11-02 23:04:07 +01:00
"@types/webpack-env": "^1.14.1",
"clean-webpack-plugin": "^3.0.0",
2019-11-02 21:25:47 +01:00
"husky": "^3.0.9",
"prettier": "^1.18.2",
2019-11-02 23:04:07 +01:00
"pretty-quick": "^2.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
2019-11-02 21:25:47 +01:00
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}