-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.06 KB
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
{
"name": "leostar-ui",
"type": "module",
"version": "0.0.1",
"private": true,
"workspaces": [
"component",
"internal/*",
"playground/*",
"docs"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --continue",
"docs:dev": "dumi dev",
"docs:build": "rimraf docs/dist && dumi build",
"play:vue": "pnpm --filter vue-starter dev",
"play:react": "pnpm --filter react-starter dev",
"play:svelte": "pnpm --filter svelte-starter dev",
"prepare": "husky install",
"lint": "turbo lint --no-daemon",
"test": "turbo test --no-daemon",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "tsc --noEmit",
"commit": "git add . && git-cz",
"changeset": "changeset",
"new": "plop",
"version-packages": "changeset version",
"release": "turbo run build --filter=docs^... && changeset publish",
"clear:readme": "esno scripts/clear-readme.ts"
},
"packageManager": "pnpm@8.14.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
}
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts} --ignore playground/**": "eslint . --fix",
"*.json": "prettier --write"
},
"engines": {
"node": ">= 18"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@leostar-ui/eslint-config": "workspace:^",
"@leostar-ui/typescript-config": "workspace:^",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.6",
"@umijs/utils": "^4.1.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji": "1.3.2-canary.2",
"dumi": "^2.2.16",
"dumi-theme-chakra": "^0.0.22",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"husky": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"lint-staged": "^14.0.1",
"markdownlint": "^0.32.1",
"plop": "^4.0.1",
"prettier": "^3.1.1",
"puppeteer": "21.1.1",
"rimraf": "^5.0.5",
"simple-git": "^3.22.0",
"turbo": "latest"
}
}