-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
51
52
53
54
55
56
{
"name": "@forsakringskassan/prettier-config-monorepo",
"version": "3.0.1",
"description": "FK Prettier Config Monorepo",
"private": true,
"keywords": [
"prettier"
],
"homepage": "https://github.com/Forsakringskassan/prettier-config",
"bugs": "https://github.com/Forsakringskassan/prettier-config/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Forsakringskassan/prettier-config.git"
},
"license": "MIT",
"author": "Försäkringskassan",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"lint": "eslint .",
"prepare": "husky",
"prettier": "prettier .",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"pretest": "npm run eslint && npm run prettier:check",
"test": "lerna run test"
},
"commitlint": {
"extends": "@forsakringskassan/commitlint-config/no-jira"
},
"lint-staged": {
"*.{js,json,md,css,scss,html,vue,ts}": "prettier --write",
"*.{js,vue,ts}": "eslint --fix"
},
"prettier": "./packages/prettier-config/index.js",
"devDependencies": {
"@forsakringskassan/commitlint-config": "1.4.1",
"@forsakringskassan/eslint-config": "11.7.0",
"husky": "9.1.7",
"lerna": "8.1.9",
"lint-staged": "15.4.3",
"npm-pkg-lint": "3.10.9",
"prettier": "3.5.0"
},
"engines": {
"node": ">= 20",
"npm": ">= 9"
},
"release": {
"extends": "@forsakringskassan/semantic-release-monorepo-config"
}
}