-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.55 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.55 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
{
"name": "tapdata-web",
"version": "4.0.0",
"private": true,
"packageManager": "pnpm@10.7.0",
"type": "module",
"scripts": {
"start:daas": "pnpm --filter daas start:test",
"start:cloud": "pnpm --filter cloud start:test",
"start:local": "pnpm --filter cloud start:local",
"dev:daas": "pnpm --filter daas start:dev",
"dev:cloud": "pnpm --filter cloud start:dev",
"taptest:daas": "pnpm --filter daas taptest",
"build:daas": "pnpm --filter daas build",
"build:cloud": "pnpm --filter cloud build",
"daas": "pnpm --filter daas start:test",
"cloud": "cross-env NODE_OPTIONS=--openssl-legacy-provider pnpm --filter cloud start",
"clean": "rm -rf node_modules && pnpm -r exec -- rm -rf node_modules",
"oss": "cross-env NODE_OPTIONS=--openssl-legacy-provider pnpm --filter daas start:dev --mode oss",
"dev:oss": "pnpm --filter daas start:dev --mode oss",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"format": "prettier --write src/",
"catalog": "pnpx codemod pnpm/catalog"
},
"dependencies": {
"element-plus": "catalog:",
"lodash-es": "catalog:",
"vue-router": "catalog:"
},
"devDependencies": {
"@iconify-json/fluent": "catalog:",
"@iconify-json/lucide": "catalog:",
"@iconify-json/mingcute": "catalog:",
"@rushstack/eslint-patch": "catalog:",
"@sxzz/eslint-config": "catalog:",
"@sxzz/prettier-config": "catalog:",
"@tap/tsconfig": "workspace:*",
"@tap/types": "workspace:*",
"@tsconfig/node20": "catalog:",
"@types/jsdom": "catalog:",
"@types/lodash-es": "catalog:",
"@types/node": "catalog:",
"@types/qs": "catalog:",
"@vue/tsconfig": "catalog:",
"chalk": "catalog:",
"cross-env": "catalog:",
"eslint": "catalog:",
"file-loader": "catalog:",
"inquirer": "catalog:",
"inquirer-autocomplete-prompt": "catalog:",
"jsdom": "catalog:",
"npm-run-all2": "catalog:",
"prettier": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vue-tsc": "catalog:"
},
"pnpm": {
"overrides": {
"@formily/core": "^2.3.0",
"@formily/element-plus": "^1.1.0",
"@formily/json-schema": "^2.3.0",
"@formily/path": "^2.3.0",
"@formily/reactive": "^2.3.0",
"@formily/reactive-vue": "^2.3.0",
"@formily/shared": "^2.3.0",
"@formily/vue": "^2.3.0"
},
"patchedDependencies": {
"@formily/element-plus@1.1.0": "patches/@formily__element-plus@1.1.0.patch"
}
},
"prettier": "@sxzz/prettier-config"
}