This repository was archived by the owner on Nov 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.88 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.88 KB
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
47
{
"name": "ln-markets-umbrel",
"version": "1.2.4",
"description": "LN Markets Umbrel App",
"repository": "git@github.com:lnmarkets/umbrel.git",
"author": "BOTREL Kilian <kilian.botrel@ito.am>",
"private": true,
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --write 'apps/**/*.{js,vue}'",
"local:start": "cd dev/local && ./scripts/start.sh",
"local:stop": "cd dev/local && ./scripts/stop.sh",
"testnet:init": "cd dev/testnet && ./scripts/init.sh",
"testnet:start": "cd dev/testnet && ./scripts/start.sh",
"testnet:stop": "cd dev/testnet && ./scripts/stop.sh",
"testnet:restart-api": "cd dev/testnet && docker-compose restart api",
"lnd:balance": "docker exec --user lnd -it lnmarkets_umbrel_testnet_lnd lncli --network='testnet' walletbalance",
"lnd:unlock": "docker exec --user lnd -it lnmarkets_umbrel_testnet_lnd lncli --network='testnet' unlock",
"lnd:create-channel": "docker exec --user lnd -it lnmarkets_umbrel_testnet_lnd lncli --network='testnet' openchannel '03bae2db4b57738c1ec1ffa1c5e5a4423968cc592b3b39cddf7d495e72919d6431'"
},
"devDependencies": {
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.2.9",
"eslint-plugin-no-autofix": "1.2.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-sonarjs": "0.13.0",
"eslint-plugin-tailwindcss": "3.5.0",
"eslint-plugin-unicorn": "42.0.0",
"eslint-plugin-vue": "8.7.1",
"husky": "7.0.4",
"lint-staged": "12.4.1",
"nodemon": "2.0.16",
"prettier": "2.6.2"
}
}