-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"name": "@markdown-editor/monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepository of @gravity-ui/markdown-editor packages",
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"devEngines": {
"runtime": {
"name": "node",
"version": "24",
"onFail": "warn"
},
"packageManager": {
"name": "pnpm",
"version": "10.17.1",
"onFail": "warn"
}
},
"scripts": {
"ci:deps": "pnpm i --frozen-lockfile",
"ci:demo:build": "nx sb:build @markdown-editor/demo",
"ci:test:visual": "nx playwright @markdown-editor/demo",
"ci:test:unit": "nx run-many -t test --verbose",
"ci:test:esbuild": "nx run-many -t test:esbuild --verbose",
"ci:test:circular-deps": "nx run-many -t test:circular-deps --verbose",
"start": "nx sb:start @markdown-editor/demo",
"clean": "nx run-many -t clean",
"build": "nx run-many -t build",
"typecheck": "nx run-many -t typecheck",
"test": "nx run-many -t test,test:esbuild,test:circular-deps",
"test:e2e": "nx playwright:docker @markdown-editor/demo",
"test:e2e:report": "nx playwright:docker:report @markdown-editor/demo",
"lint": "run-p -cs lint:*",
"lint:js": "eslint './**/*.{js,jsx,mjs,ts,tsx}'",
"lint:styles": "stylelint './**/*.{css,scss}'",
"lint:prettier": "prettier --check './**/*.{js,jsx,mjs,ts,tsx,css,scss}'"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.2.0",
"@markdown-editor/linters": "workspace:*",
"eslint": "catalog:linters",
"npm-run-all": "^4.1.5",
"postcss": "catalog:linters",
"prettier": "catalog:linters",
"stylelint": "catalog:linters",
"typescript": "catalog:ts",
"nx": "22.3.3"
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix --quiet",
"prettier --write"
],
"*.{md,json,yaml,yml}": "prettier --write"
}
}