-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@culur/monorepo",
"version": "0.0.0",
"description": "Culur's Monorepo",
"repository": {
"type": "git",
"url": "git+https://github.com/culur/culur.git"
},
"bugs": {
"url": "https://github.com/culur/culur/issues"
},
"homepage": "https://github.com/culur/culur#readme",
"author": "culur <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"🚀 ----- NX ----- 🚀": "",
"clean": "nx run-many -t clean --exclude monorepo",
"gen": "nx run-many -t gen --exclude monorepo",
"build": "nx run-many -t build --exclude monorepo",
"test": "nx run-many -t test --exclude monorepo",
"🦋 ----- CHANGESET ----- 🦋": "",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile",
"🧹 ----- LINT ----- 🧹": "",
"es-config": "eslint-config-inspector",
"lint": "nx run-many -t lint:md lint:es lint:css lint:prettier",
"lint:md": "markdownlint-cli2",
"lint:es": "eslint",
"lint:css": "stylelint '**/*.{vue,css,scss}' --allow-empty-input",
"lint:prettier": "prettier \"**\" --check --ignore-path .prettierignore.project",
"🧹 ----- FIX ----- 🧹": "",
"fix": "nx run-many -t fix:md fix:es fix:css fix:prettier --parallel 1",
"fix:md": "markdownlint-cli2 --fix",
"fix:es": "eslint --fix",
"fix:css": "stylelint '**/*.{vue,css,scss}' --allow-empty-input --fix",
"fix:prettier": "prettier \"**\" --write --ignore-path .prettierignore.project",
"🔃 ----- LIFE CYCLE ----- 🔃": "",
"prepare": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"volta": {
"node": "24.15.0",
"pnpm": "10.33.0"
},
"engines": {
"node": ">=20",
"pnpm": "10.33.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/types": "^20.5.0",
"@culur/changesets-changelog-github": "workspace:*",
"@culur/config-eslint": "workspace:*",
"@culur/config-prettier": "workspace:*",
"@culur/config-stylelint": "workspace:*",
"@culur/config-typescript": "workspace:*",
"@eslint-react/eslint-plugin": "^3.0.0",
"@eslint/config-inspector": "^1.5.0",
"@nx/shared-fs-cache": "^5.0.2",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"dotenv": "^17.4.2",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"markdownlint": "^0.40.0",
"markdownlint-cli2": "^0.22.1",
"nx": "22.6.5",
"pinst": "^3.0.0",
"prettier": "^3.8.3",
"prettier-plugin-embed": "^0.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.3",
"stylelint": "^17.8.0",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vitest": "^4.1.5"
}
}