-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.6 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
{
"name": "relaxed",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"bootstrap": "pnpm install && pnpm dev",
"preplop": "esbuild --bundle ./plopfile.ts --format=esm --outfile=./plopfile.mjs --platform=node",
"plop": "plop & rimraf ./plopfile.mjs",
"postplop": "pnpm i",
"prebuild": "rimraf packages/*/dist && pnpm build:docs",
"build": "turbo run build --filter=@relaxed/*",
"build:docs": "turbo run build --filter docs",
"build:components": "turbo run build --filter components",
"build:utils": "turbo run build --filter utils",
"build:directives": "turbo run build --filter @relaxed/vue-directives",
"build:hooks": "turbo run build --filter hooks",
"dev": "turbo run dev --filter docs",
"clear": "rimraf 'packages/*/{lib,node_modules}' && rimraf node_modules",
"dev:layout": "turbo run dev --filter=@relaxed/vue-components",
"play": "pnpm dev --filter playground",
"lint": "turbo run lint",
"format": "prettier --write \"**/**/*.{ts,tsx,js,vue,md}\"",
"prettier": "prettier --write .",
"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",
"clean": "rimraf node_modules **/*/node_modules",
"sync": "node ./script/sync.mjs",
"prepublishOnly": "npm run build",
"release": "bumpp packages/*/package.json && pnpm publish -r"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/config-conventional": "^17.4.4",
"@relaxed/eslint-config": "workspace:*",
"@types/node": "^17.0.45",
"@vitejs/plugin-vue": "^3.0.0",
"bumpp": "^8.2.1",
"commitizen": "^4.3.0",
"commitlint": "^17.5.1",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.2",
"esbuild": "^0.15.18",
"eslint": "^8.37.0",
"esno": "^0.16.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"plop": "^3.1.2",
"rimraf": "^3.0.2",
"tslib": "^2.5.0",
"tsup": "^6.7.0",
"turbo": "^1.8.8",
"typescript": "^4.9.5",
"vite": "^3.0.0",
"zx": "^7.2.1"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "pnpm@7.28.0",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"react",
"react-dom",
"@types/react"
]
}
}
}