-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 3.03 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
{
"name": "dwarvesf-react-toolkit",
"private": true,
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"test": "turbo run test --parallel",
"test:ci": "turbo run test:ci --parallel",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "turbo run build",
"build:packages": "turbo build --filter=./packages/**/*",
"prepare": "pnpm run build:packages",
"start:app": "pnpm run build && pnpm -C ./example start",
"changeset": "changeset",
"release": "changeset publish",
"version:canary": "changeset version --snapshot canary",
"release:canary": "changeset publish --tag canary",
"format": "prettier -c --write \"*/**\"",
"postinstall": "husky install",
"docs:build": "pnpm search-meta:gen && turbo run build --scope=@dwarvesf/react-toolkit-docs --include-dependencies --parallel",
"docs:dev": "turbo run dev --scope=@dwarvesf/react-toolkit-docs --include-dependencies --parallel",
"search-meta:gen": "ts-node scripts/get-search-meta.ts",
"pkgs": "manypkg run",
"check:pkgs": "manypkg check",
"fix:pkgs": "manypkg fix"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{json,css,scss,md,svg}": [
"prettier --write"
],
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@docusaurus/utils": "2.0.0-beta.5",
"@manypkg/cli": "^0.18.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^29.5.0",
"@types/react": "^17.0.16",
"@types/react-dom": "^17.0.9",
"@types/shelljs": "^0.8.9",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "~6.1.0",
"@typescript-eslint/parser": "6.1.0",
"babel-eslint": "~10.1.0",
"eslint": "~8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "~17.1.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-react": "~1.1.7",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-jsx-a11y": "~6.7.1",
"eslint-plugin-prettier": "~5.0.0",
"eslint-plugin-react": "~7.32.2",
"eslint-plugin-react-hooks": "~4.6.0",
"eslint-plugin-testing-library": "5.11.0",
"graceful-fs": "4.2.8",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"markdown-toc": "^1.2.0",
"object-assign": "4.1.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"scheduler": "0.20.2",
"shelljs": "^0.8.4",
"swr": "^1.0.0",
"toggle-selection": "1.0.6",
"ts-node": "^9.1.1",
"tsdx": "^0.14.1",
"tslib": "2.3.1",
"typescript": "^4.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/react": "^12.1.0",
"@types/graceful-fs": "4.1.5",
"turbo": "1.8.8"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": ">=8.2.0"
}
}