-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.17 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": "lightning-address-nodejs",
"version": "1.0.0",
"description": "Lightning Address Server",
"main": "src/server.ts",
"repository": "https://github.com/mefatbear/lightning-address-nodejs",
"author": "@MeFatBear",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"dev": "ts-node -r tsconfig-paths/register --files src/server.ts",
"entrypoint": "./entrypoint.sh"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.10",
"eslint": "^8.3.0",
"eslint-config-next": "^12.0.4",
"husky": "^4.3.0",
"lint-staged": "^12.1.2",
"postcss": "^8.4.1",
"prettier": "^2.4.1",
"prettier-plugin-sort-imports": "^1.0.1",
"pretty-quick": "^3.1.2",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"axios": "^0.24.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.2",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"node-fetch": "^3.1.0",
"socks-proxy-agent": "^6.1.1",
"winston": "^3.3.3"
}
}