-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"private": true,
"workspaces": [
"packages/redux",
"packages/redux-dynamic-modules",
"packages/router",
"packages/tsrux",
"packages/use-event-source",
"packages/use-graphql",
"packages/use-fetch"
],
"scripts": {
"build": "npm run build --workspaces",
"docs:build": "npm run docs:build:base -- build",
"docs:build:base": "rimraf docs-dist && mono-docs .",
"docs:dev": "nodemon --ignore \"docs-dist\" --ignore node_modules --ignore dist -e ts,tsx,md,scss,png,webp --exec \"npm run docs:build:base -- serve\"",
"lint": "mono-lint",
"lint:fix": "mono-lint --fix",
"release": "mono-release",
"test": "npm test --workspaces --if-present"
},
"devDependencies": {
"@lusito/eslint-config-react": "^4.0.0",
"@lusito/mono": "^0.20.0",
"@lusito/mono-docs": "^0.21.0",
"@lusito/prettier-config": "^3.2.0",
"@lusito/tsconfig": "^1.0.5",
"eslint-plugin-jest": "^28.11.0",
"nodemon": "^3.1.9",
"sort-package-json": "^2.15.1"
},
"volta": {
"node": "23.8.0"
},
"monoLint": {
"lintMarkdownLinks": {
"warnOnlyPatterns": [
"^https:\\/\\/lusito\\.github\\.io\\/react-nano\\/"
]
},
"lintMarkdownTitles": {
"ignorePatterns": [
"@react-nano[/a-z0-9-]*",
"react-redux"
]
}
}
}