-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.32 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@island.is/regulations-",
"description": "Mini monorepo for the Regulations API and file-servers andthe regulations-editor library",
"repository": "ssh://[email protected]:island-is/regulations.git",
"author": "Hugsmiðajn ehf. (www.hugsmidjan.is)",
"license": "MIT",
"private": true,
"engines": {
"node": "20",
"yarn": ">=1.22"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspace $BUILD_COMMAND",
"heroku-postbuild": "yarn workspace $POSTBUILD_COMMAND",
"start": "yarn workspace $START_COMMAND",
"lint": "eslint \"*.{js,ts,tsx}\" \"packages/*/src/**/*.{js,ts,tsx}\"",
"format:eslint": "eslint --fix \"*.{js,ts,tsx}\" \"packages/*/*.{js,ts,tsx}\" \"packages/*/src/**/*.{js,ts,tsx}\"",
"format:prettier": "prettier --write \"*.{json,md}\" \"packages/*/*.{json,md}\" \"packages/*/src/**/*.{json,md,html}\"",
"format": "yarn run format:eslint && yarn run format:prettier"
},
"devDependencies": {
"@hugsmidjan/hxmstyle": "^6.3.1",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"concurrently": "^7.6.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-destructure-depth": "^1.0.3",
"eslint-plugin-destructuring": "^2.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-total-functions": "^6.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1",
"typescript": "^4.5.4"
},
"hxmstyle": {
"options": {
"react": true,
"typescript": true
},
"dependenciesAdded": [
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"eslint",
"eslint-config-prettier",
"eslint-plugin-deprecation",
"eslint-plugin-destructure-depth",
"eslint-plugin-destructuring",
"eslint-plugin-import",
"eslint-plugin-prettier",
"eslint-plugin-react",
"eslint-plugin-react-hooks",
"eslint-plugin-simple-import-sort",
"eslint-plugin-total-functions",
"eslint-plugin-unused-imports",
"prettier"
]
}
}