generated from un-ts/mono-lib-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 3.1 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@rxts/reuv",
"version": "0.0.0",
"type": "module",
"description": "Sharable libraries between React and Vue",
"repository": "git+https://github.com/rx-ts/reuv.git",
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/@reuv/*",
"packages/*"
],
"packageManager": "pnpm@7.5.1",
"scripts": {
"build": "run-s build:tsc build:r",
"build:r": "r -f cjs",
"build:tsc": "tsc -b",
"clean": "rimraf 'packages/**/{lib,*.tsbuildinfo}'",
"codesandbox:install": "npx pnpm@7.5.1 i",
"dev": "w -e docs --disableDotRule --publicPath /",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:style": "stylelint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"prerelease": "yarn build",
"prevercel-build": "pnpm build",
"release": "changeset publish",
"start": "sirv dist",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"typecov": "type-coverage",
"vercel-build": "w -e docs -p --publicPath /"
},
"devDependencies": {
"@1stg/app-config": "^6.1.3",
"@1stg/lib-config": "^9.0.0",
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.2",
"@pkgr/webpack": "^3.1.2",
"@pkgr/webpack-mdx": "^2.0.3",
"@reuv/core": "workspace:*",
"@types/jest": "^28.1.8",
"@types/node": "^18.0.5",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/web": "^0.0.69",
"github-markdown-css": "^5.1.0",
"jest": "^28.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"reuv": "workspace:*",
"sirv-cli": "^2.0.2",
"ts-jest": "^28.0.7",
"tsx": "^3.8.0",
"type-coverage": "^2.22.0",
"typescript": "^4.7.4"
},
"resolutions": {
"prettier": "^2.7.1"
},
"browserslist": [
"extends @1stg/browserslist-config/modern"
],
"commitlint": {
"extends": "@1stg"
},
"eslintConfig": {
"root": true,
"extends": "@1stg",
"rules": {
"react/react-in-jsx-scope": "off"
},
"overrides": [
{
"files": [
".github/*.yml"
],
"rules": {
"unicorn/filename-case": "off"
}
}
]
},
"eslintIgnore": [
"coverage",
"dist",
"lib",
"/pnpm-lock.yaml",
"!/.github",
"!/.*.cjs"
],
"jest": {
"preset": "ts-jest/presets/default-esm",
"collectCoverage": true,
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1",
"@reuv/(.*)": "<rootDir>/packages/@reuv/$1/src",
"reuv": "<rootDir>/packages/reuv/src"
}
},
"prettier": "@1stg/prettier-config",
"remarkConfig": {
"plugins": [
"@1stg/remark-config"
]
},
"renovate": {
"extends": [
"@1stg"
]
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}