-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.11 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
{
"name": "mono-lib-boilerplate",
"version": "0.0.0",
"type": "module",
"description": "A simple mono library boilerplate",
"repository": "git+https://github.com/un-ts/mono-lib-boilerplate.git",
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "yarn@4.0.2",
"scripts": {
"build": "concurrently -r 'yarn:build:*'",
"build:r": "r -f cjs",
"build:tsc": "tsc -b",
"clean": "rimraf -g 'packages/**/{lib,*.tsbuildinfo}'",
"dev": "vitest",
"docs": "vite docs",
"lint": "concurrently -r 'yarn:lint:*'",
"lint:es": "eslint . --cache -f friendly",
"lint:style": "stylelint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"release": "yarn build && changeset publish",
"serve": "sirv dist -s",
"test": "vitest run --coverage",
"typecov": "type-coverage",
"vercel-build": "vite build docs --emptyOutDir",
"version": "changeset version && yarn --no-immutable"
},
"devDependencies": {
"@1stg/app-config": "^10.0.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.5.0",
"@mdx-js/rollup": "^3.0.0",
"@pkgr/rollup": "^5.0.0",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/web": "^0.0.135",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-istanbul": "^1.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"github-markdown-css": "^5.5.0",
"lint-staged": "^15.2.0",
"pkg": "link:packages/pkg",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.3",
"remark-gfm": "^4.0.0",
"rimraf": "^5.0.5",
"sass": "^1.70.0",
"simple-git-hooks": "^2.9.0",
"sirv-cli": "^2.0.2",
"stylelint": "^16.2.0",
"tsx": "^4.7.0",
"type-coverage": "^2.27.1",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
},
"resolutions": {
"prettier": "^3.2.4"
},
"browserslist": [
"extends @1stg/browserslist-config/modern"
],
"commitlint": {
"extends": "@1stg"
},
"eslintConfig": {
"extends": "@1stg",
"rules": {
"markup/markup": "off",
"react/react-in-jsx-scope": "off"
}
},
"eslintIgnore": [
"coverage",
"dist",
"lib",
"/packages/**/CHANGELOG.md",
"/auto-imports.d.ts",
"/yarn-lock.yaml",
"!/.github",
"!/.*.cjs"
],
"prettier": "@1stg/prettier-config",
"remarkConfig": {
"plugins": [
"@1stg/preset"
]
},
"renovate": {
"extends": [
"@1stg"
]
},
"stylelint": {
"extends": "@1stg/stylelint-config",
"rules": {
"scss/at-import-no-partial-leading-underscore": null,
"scss/load-no-partial-leading-underscore": true
}
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}