-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.15 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "nx-package-based",
"private": true,
"version": "0.0.0",
"scripts": {
"build:all": "nx run-many -t build",
"bump-packages": "ts-node ./scripts/bump-packages",
"check-packages": "ts-node ./scripts/check-packages",
"e2e": "playwright test --config e2e/playwright.config.ts",
"get-changed-packages": "ts-node ./scripts/get-changed-packages",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pree2e": "./scripts/pree2e.sh",
"poste2e": "cd e2e && rm -rf hatchify-app",
"postinstall": "playwright install --with-deps",
"update-gs": "./scripts/updategs.sh"
},
"eslintConfig": {
"root": true,
"extends": [
"@bitovi/eslint-config/react",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"curly": "error",
"one-var": [
"error",
"never"
],
"prettier/prettier": [
"error",
{
"semi": false,
"trailingComma": "all"
}
]
},
"overrides": [
{
"files": [
"*.md"
],
"parser": "eslint-plugin-markdownlint/parser",
"extends": [
"plugin:markdownlint/recommended"
],
"rules": {
"markdownlint/md013": "warn",
"markdownlint/md024": "warn",
"markdownlint/md029": "warn",
"markdownlint/md033": "off",
"markdownlint/md036": "warn",
"prettier/prettier": "off"
}
},
{
"files": [
"e2e/tests/*.spec.ts"
],
"rules": {
"testing-library/prefer-screen-queries": "off"
}
}
]
},
"prettier": {
"semi": false,
"trailingComma": "all"
},
"devDependencies": {
"@bitovi/eslint-config": "^1.6.0",
"@playwright/test": "^1.40.1",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdownlint": "^0.5.0",
"eslint-plugin-prettier": "^5.0.1",
"nx": "^18.0.4",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"semver": "^7.5.0"
}
}