-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 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
{
"name": "@lotus-design/monorepo",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"scripts": {
"bootstrap": "pnpm install",
"start": "pnpm sb",
"build": "pnpm --filter @lotus-design/react-primitives build",
"sb": "pnpm --filter @lotus-design/storybook start",
"build:sb": "pnpm --filter @lotus-design/storybook build",
"start:sb": "pnpm --filter @lotus-design/storybook start",
"test": "vitest",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"prepare": "husky || true",
"reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
"preinstall": "npx only-allow pnpm",
"major": "taze minor -wIr"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.0",
"@antfu/ni": "^0.21.12",
"@arco-design/web-react": "^2.63.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint-react/eslint-plugin": "^1.5.15",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.6",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@testing-library/cypress": "^10.0.2",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.19",
"chalk": "^5.3.0",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"cypress": "^13.11.0",
"cypress-real-events": "^1.12.0",
"cypress-vite": "^1.5.0",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"execa": "^9.2.0",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.5",
"ora": "^8.0.1",
"plop": "^4.0.1",
"pnpm": "^8.15.8",
"postcss": "^8.4.38",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"semantic-release": "^24.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"taze": "^0.13.8",
"tsx": "^4.15.2",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"vitest": "^1.6.0",
"walrus": "workspace:*",
"zx": "^8.1.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix"
]
}
}