-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
123 lines (123 loc) · 4.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@wangeditor-next/wangeditor",
"private": true,
"packageManager": "[email protected]",
"browserslist": [
"defaults",
"not IE 11"
],
"scripts": {
"cz": "cz",
"test": "cross-env NODE_OPTIONS=--unhandled-rejections=warn vitest run --passWithNoTests --dangerouslyIgnoreUnhandledErrors",
"test-c": "cross-env NODE_OPTIONS=--unhandled-rejections=warn vitest run --passWithNoTests --dangerouslyIgnoreUnhandledErrors --coverage",
"dev": "turbo run dev",
"dev:sh": "sh scripts/build-base.sh dev",
"build": "turbo run build",
"publish": "yarn changeset publish",
"prerelease": "yarn build",
"format": "yarn prettier --write",
"lint": "eslint --cache --quiet --no-error-on-unmatched-pattern ./",
"lint:fix": "eslint --fix --cache --quiet --no-error-on-unmatched-pattern ./",
"lint:staged": "lint-staged",
"prettier": "prettier --ignore-path .gitignore \"packages/*/+(src|__tests__)/**/*.+(ts|tsx)\" --cache",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"e2e:dev": "concurrently \"yarn example\" \"yarn run cypress:open\"",
"e2e": "concurrently \"yarn example\" \"yarn run cypress:run\"",
"prepare": "husky install",
"changeset": "changeset",
"example": "turbo run example --filter=@wangeditor-next/editor"
},
"workspaces": [
"shared/*",
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/helper-function-name": "^7.22.5",
"@babel/helper-hoist-variables": "^7.22.5",
"@babel/helper-split-export-declaration": "^7.22.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime-corejs3": "^7.14.7",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^6.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitest/coverage-v8": "2.1.2",
"autoprefixer": "^10.2.5",
"babel-core": "^7.0.0-bridge.0",
"concurrently": "^9.0.0",
"core-js": "3",
"cross-env": "^7.0.2",
"cssnano": "^7.0.0",
"cypress": "^13.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.0.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-vue": "^9.27.0",
"http-server": "^14.0.0",
"husky": "^9.1.6",
"jest-environment-jsdom": "^27.0.0",
"less": "^4.0.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"nock": "^13.2.4",
"patch-package": "^8.0.0",
"postcss": "^8.2.15",
"prettier": "^3.3.3",
"rollup": "^4.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.5.0",
"tslib": "^2.3.0",
"turbo": "2.1.3",
"typescript": "5.6.2",
"vitest": "^2.1.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7.14.6"
}
}