-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.1 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
{
"name": "vben-admin-monorepo",
"version": "3.0.0-rc1",
"private": true,
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": {
"url": "https://github.com/vbenjs/vue-vben-admin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vbenjs/vben3.git"
},
"license": "MIT",
"scripts": {
"bootstrap": "pnpm install",
"build": "pnpm --filter scripts build",
"changeset": "changeset",
"clean": "pnpm turbo run clean && rimraf node_modules",
"dev": "pnpm --filter scripts dev",
"serve": "pnpm --filter @apps/admin dev",
"format": "pnpm run lint:eslint & pnpm run lint:stylelint & pnpm run lint:prettier",
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm run stub",
"lint:eslint": "eslint . --cache --max-warnings 0 --fix",
"lint:prettier": "prettier --write \"{packages,apps,configs,scripts}/**/*.{js,json,ts,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --fix ",
"reinstall": "pnpm turbo run clean && rimraf pnpm-lock.yaml && rimraf node_modules && npm run bootstrap",
"stub": "pnpm --filter @config/** prepack",
"test": "vitest",
"turbo:build": "turbo run build --parallel",
"turbo:dev": "turbo run dev --parallel",
"turbo:preview": "turbo run preview --parallel",
"version": "pnpm run changeset version"
},
"resolutions": {
"bin-wrapper": "npm:bin-wrapper-china"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite-plugin-mock>@rollup/plugin-node-resolve": "13.3.0",
"vite-plugin-mock>@rollup/pluginutils": "3.1.0"
}
}
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/fs-extra": "^11.0.3",
"@types/node": "^20.8.8",
"cross-env": "^7.0.3",
"esno": "^0.17.0",
"fs-extra": "^11.1.1",
"jsdom": "^22.1.0",
"pathe": "^1.1.1",
"rimraf": "^5.0.5",
"rollup": "^4.1.4",
"ts-node": "^10.9.1",
"turbo": "^1.10.16",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}