forked from codebdy/rxdrag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.75 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": "rxdrag",
"private": true,
"version": "0.6.0",
"description": "Rxdarg",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "vitest",
"clean": "turbo run clean && rm -rf node_modules",
"lint-staged": "pnpm --workspace-concurrency=1 exec lint-staged",
"new-app": "pnpm exec plop app",
"new-app-ts": "pnpm exec plop app-ts",
"new-library": "pnpm exec plop library",
"new-library-ts": "pnpm exec plop library-ts",
"docs": "pnpm --filter \"@rxdrag/docs\" run docs",
"e2e": "pnpm --filter \"@rxdrag/e2e\" run e2e",
"changeset-create": "pnpm exec changeset add",
"changeset-save-prerelease": "pnpm exec changeset pre enter",
"changeset-save": "pnpm exec changeset version",
"changeset-tag": "pnpm exec changeset tag",
"changeset-tag-and-publish": "pnpm exec changeset publish"
},
"keywords": [],
"author": "Water.Li",
"dependencies": {
"@vitejs/plugin-react-swc": "^3.0.0",
"vite": "^4.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@rxdrag/eslint-config-custom": "workspace:*",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.11.13",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"jsdom": "latest",
"lint-staged": "^13.1.0",
"plop": "^3.1.1",
"prettier": "^2.8.1",
"turbo": "^1.10.12",
"typescript": "^5",
"vitest": "^0.25.8"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --ext .js,.jsx,.ts,.tsx --fix --max-warnings=0",
"**/*.{js,jsx,json,yml,yaml,css,less,scss,ts,tsx,md,graphql}": "prettier --write"
},
"packageManager": "[email protected]"
}