-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
34 lines (34 loc) · 1009 Bytes
/
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
{
"name": "@onlyoffice/documentation",
"type": "module",
"private": true,
"engines": {
"node": "^21"
},
"scripts": {
"build": "tsx makefile.ts build",
"clean": "tsx makefile.ts clean",
"lint:code": "eslint .",
"lint:pages": "remark --frail --quiet site/pages",
"lint:styles": "stylelint --ignore-path .gitignore \"+(packages|site|storybook)/**/*.css\"",
"lint": "pnpm lint:code && pnpm lint:styles && pnpm lint:pages",
"test": "tsx makefile.ts test"
},
"devDependencies": {
"@onlyoffice/eslint-config": "workspace:^",
"@onlyoffice/remark-config": "workspace:^",
"@onlyoffice/stylelint-config": "workspace:^",
"@types/node": "20.12.12",
"eslint": "9.8.0",
"eslint-config-flat-gitignore": "0.1.8",
"lefthook": "1.7.12",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.0",
"sade": "1.8.1",
"stylelint": "16.8.2",
"tsx": "4.16.5",
"typescript": "5.4.5"
}
}