-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "w3up",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]+sha256.56a9e76b51796ca7f73b85e44cf83712862091f4d498c0ce4d5b7ecdc6ba18f7",
"scripts": {
"format": "prettier --write '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{js,ts,yml,json}' --ignore-path .gitignore",
"clean": "rm -rf docs node_modules pnpm-lock.yaml packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules,.next}",
"lint": "pnpm -r --if-present run lint",
"test": "pnpm -r --if-present run test",
"check": "pnpm -r --if-present run check",
"build": "pnpm -r --if-present run build",
"dev": "pnpm -r --if-present --parallel run dev --preserveWatchOutput",
"docs": "pnpm run build && typedoc --plugin typedoc-plugin-missing-exports --out docs",
"docs:markdown": "pnpm run build && docusaurus generate-typedoc"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@docusaurus/core": "^3.0.0",
"@docusaurus/preset-classic": "^3.0.0",
"docusaurus-plugin-typedoc": "^0.21.0",
"lint-staged": "^13.2.0",
"prettier": "2.8.3",
"react": "^18.2.0",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.0",
"typescript": "5.2.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"engines": {
"node": ">=16"
},
"dependencies": {
"depcheck": "^1.4.3",
"typedoc-plugin-missing-exports": "^2.1.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react*"
]
}
}
}