-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·61 lines (61 loc) · 1.85 KB
/
package.json
File metadata and controls
executable file
·61 lines (61 loc) · 1.85 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
{
"name": "fantastic-admin",
"type": "module",
"version": "6.0.0-beta.5",
"private": true,
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"dev": "tsx scripts/cli.ts --mode=dev",
"build": "tsx scripts/cli.ts --mode=build",
"serve": "tsx scripts/cli.ts --mode=serve",
"lint": "run-s lint:tsc lint:eslint lint:stylelint",
"lint:tsc": "pnpm --filter './apps/*' -r run lint",
"lint:eslint": "eslint . --cache --fix",
"lint:stylelint": "stylelint \"{apps,packages}/**/*.{css,scss,vue}\" --cache --fix",
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm -r run stub --if-present && simple-git-hooks",
"taze": "taze minor -wIr",
"commit": "git cz",
"release": "bumpp"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@clack/prompts": "catalog:",
"@fantastic-admin/themes": "workspace:*",
"@iconify/json": "catalog:",
"@stylistic/stylelint-config": "catalog:",
"@types/node": "catalog:",
"@unocss/core": "catalog:",
"@unocss/eslint-plugin": "catalog:",
"autoprefixer": "catalog:",
"bumpp": "catalog:",
"cz-git": "catalog:",
"eslint": "catalog:",
"lint-staged": "catalog:",
"npm-run-all2": "catalog:",
"simple-git-hooks": "catalog:",
"stylelint": "catalog:",
"stylelint-config-recess-order": "catalog:",
"stylelint-config-standard-scss": "catalog:",
"stylelint-config-standard-vue": "catalog:",
"stylelint-scss": "catalog:",
"taze": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"unocss": "catalog:",
"unocss-preset-animations": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"preserveUnused": true
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}