generated from wood3n/pnpm-monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.28 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
{
"name": "fe-kit",
"private": true,
"description": "frontend development utils and components",
"keywords": [
"javascript",
"typescript",
"frontend",
"react",
"react components"
],
"repository": {
"type": "git",
"url": "https://github.com/wood3n/fe-kit.git"
},
"license": "MIT",
"author": "oxyg3n",
"type": "module",
"scripts": {
"ac": "npx changeset add",
"build": "npx turbo run build",
"build:components": "npx turbo run build --filter @fe-kit/components",
"build:components-site": "npx turbo run build-storybook",
"build:utils": "npx turbo run build --filter @fe-kit/utils",
"ci:publish": "npx turbo run build && npx changeset publish",
"coverage": "vitest run --coverage",
"dev:components": "npx turbo watch @fe-kit/components#dev",
"prepare": "is-ci || husky",
"test": "vitest"
},
"lint-staged": {
"**/*.{js,cjs,mjs,jsx,ts,tsx}": "npx eslint --fix",
"**/*.{json,md,mdx}": "npx prettier --write",
"**/*.{css,scss,sass,less}": "npx stylelint --fix"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitest/coverage-istanbul": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"glob": "^11.0.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-plugin-packagejson": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.6.5",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"turbo": "^2.1.1",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}