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
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
48
49
50
{
"name": "@ln-markets/umbrel",
"version": "2.0.0",
"description": "LN Markets Umbrel App",
"repository": "git@github.com:lnmarkets/umbrel.git",
"author": "Victor Afanassieff <kilian.botrel@ito.am>",
"private": true,
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"type": "module",
"scripts": {
"prepare": "husky install",
"format": "prettier --write 'apps/**/*.{js,vue}'",
"lint": "eslint --fix './apps/**/*.{js,vue}'",
"dev:start": "cd dev && docker compose up -d --build",
"dev:stop": "cd dev && docker compose down --remove-orphans --volumes"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-tailwindcss": "3.13.0",
"eslint-plugin-unicorn": "47.0.0",
"eslint-plugin-vue": "9.15.1",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"vue-eslint-parser": "^9.3.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
}
}