-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
76 lines (76 loc) · 2.04 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
{
"name": "template",
"version": "0.23.12",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "esno ./scripts/build.mjs",
"dev": "cd vite-cli && farm build --watch",
"build:docs": "turbo run build --filter=docs",
"serve": "turbo run docs --parallel",
"lint": "turbo run lint",
"lint:fix": "eslint --fix --ext .js .",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prettier": "prettier --write .",
"clean": "rimraf node_modules **/*/node_modules",
"prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}",
"eslint": "eslint . --ext .ts,.vue,.js,.tsx",
"prepare": "husky install",
"commit": "git add . && cz",
"preinstall": "npx only-allow pnpm",
"release": "bumpp vite-cli/package.json && pnpm publish -r"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.3.0",
"@farmfe/cli": "nightly",
"@farmfe/core": "nightly",
"@types/fs-extra": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"bumpp": "^9.0.0",
"chalk": "^5.1.2",
"chokidar": "^3.5.3",
"commitizen": "^4.2.6",
"commitlint": "^17.3.0",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.2",
"esbuild": "^0.18.0",
"eslint": "^8.29.0",
"eslint-config-relaxed-ts": "^2.0.2",
"esno": "^0.16.3",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"pnpm": "8.12.0",
"prettier": "latest",
"rimraf": "^5.0.0",
"ts-node-dev": "^2.0.0",
"tsup": "^6.5.0",
"turbo": "latest",
"typescript": "^5.0.0",
"zx": "^7.1.1"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"react",
"react-dom",
"@types/react"
]
}
}
}