-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.36 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
47
48
49
50
{
"name": "@ln-markets/umbrel",
"version": "2.0.1",
"description": "LN Markets Umbrel App",
"repository": "[email protected]:lnmarkets/umbrel.git",
"author": "Victor Afanassieff <[email protected]>",
"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": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-tailwindcss": "3.14.2",
"eslint-plugin-unicorn": "51.0.1",
"eslint-plugin-vue": "9.21.1",
"husky": "9.0.10",
"lint-staged": "15.2.2",
"nodemon": "3.0.3",
"prettier": "3.2.5",
"vue-eslint-parser": "^9.4.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
}
}