-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.87 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.87 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
{
"name": "rchitect-design",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/RandyZ/rchitect-design.git",
"directory": "sample"
},
"author": {
"name": "Randy",
"email": "[email protected]",
"url": "https://github.com/RandyZ"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm run stub",
"build": "pnpm --filter scripts build",
"build:test": "cross-env NODE_ENV=test pnpm --filter scripts build --all",
"build:prod": "cross-env NODE_ENV=production pnpm --filter scripts build --all",
"build:report": "pnpm -F weiming-sample report",
"turbo:build": "turbo run build --parallel",
"test": "vitest run --coverage",
"test:dev": "vitest watch",
"test:cov": "vitest run --coverage",
"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 ",
"dev": "turbo run dev --concurrency 20",
"serve": "pnpm --filter @rchitect/app-sample dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"stub": "pnpm --filter @rchitect-cli/** prepack",
"clean": "pnpm turbo run clean && rimraf node_modules",
"gen": "pnpm --filter @rchitect-cli/scripts gen-module $npm_config_name $APP_LEVEL",
"gen:app": "cross-env APP_LEVEL=\"app\" pnpm gen",
"gen:rock": "cross-env APP_LEVEL=\"rock\" pnpm gen",
"dep:sample": "pnpm --filter @rchitect/app-sample add"
},
"workspaces": [
"design-app/*",
"design-rock/*",
"design-defination/*",
"design-cli/*",
"app-sample"
],
"dependencies": {
"@rchitect-dev/rock-components": "workspace:^",
"@vueuse/core": "~10.6.0",
"lodash-es": "~4.17.21",
"vue": "~3.3.7",
"vue-demi": "~0.14.6"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rchitect-cli/lint": "workspace:*",
"@rchitect-cli/tsconfig": "workspace:*",
"@rchitect-cli/vite": "workspace:*",
"@rchitect-rock/components": "workspace:^",
"@rchitect-rock/tools": "workspace:*",
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "~4.17.10",
"@types/node": "~20.9.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"@vue/test-utils": "^2.2.9",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"esno": "^0.17.0",
"happy-dom": "^12.10.3",
"prettier": "^3.0.3",
"reflect-metadata": "^0.1.13",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^5.0.5",
"turbo": "^1.11.3",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"unplugin-vue-macros": "^2.6.2",
"vite": "~4.5.1",
"vitest": "~0.34.6",
"vitest-sonar-reporter": "^0.5.0"
},
"packageManager": "[email protected]"
}