-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
67 lines (67 loc) · 1.71 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
{
"name": "tsx-dom-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "Santo Pfingsten",
"workspaces": [
"packages/dom-helmet",
"packages/scatman",
"packages/tsx-dom-types",
"packages/tsx-dom",
"packages/tsx-dom-ssr",
"demos/tsx-dom-demo",
"demos/tsx-dom-ssr-demo"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"docs:build": "npm run docs:build:base -- build",
"docs:build:base": "rimraf docs-dist && mono-docs .",
"docs:dev": "nodemon --exec \"npm run docs:build:base -- serve\"",
"lint": "mono-lint",
"lint:fix": "mono-lint --fix",
"release": "mono-release",
"start": "npm start -w tsx-dom-demo",
"start:ssr": "npm start -w tsx-dom-ssr-demo",
"test": "npm test --workspaces --if-present"
},
"nodemonConfig": {
"ext": "ts,tsx,md,scss,png,webp",
"ignore": [
"docs-dist/*",
"dist/*",
"node_modules/*"
]
},
"dependencies": {
"@lusito/eslint-config": "3.1.3",
"@lusito/mono": "0.19.2",
"@lusito/mono-docs": "0.18.4",
"@lusito/prettier-config": "3.1.0",
"@lusito/stylelint-config": "3.0.0",
"@lusito/tsconfig": "1.0.5",
"@types/jest": "29.5.12",
"@types/node": "20.14.1",
"@types/prompts": "2.4.9",
"jest": "29.7.0",
"nodemon": "3.1.3",
"sort-package-json": "2.10.0",
"ts-jest": "29.1.4",
"typescript": "5.4.5"
},
"volta": {
"node": "20.14.0"
},
"monoLint": {
"lintMarkdownLinks": {
"warnOnlyPatterns": [
"^https:\\/\\/lusito\\.github\\.io\\/tsx-dom\\/"
]
},
"lintMarkdownTitles": {
"ignorePatterns": [
"(tsx-dom(-ssr|-types)?|scatman|dom-helmet)"
]
}
}
}