-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
40 lines (40 loc) · 918 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
35
36
37
38
39
40
{
"name": "ckeditor5-tutorials-examples",
"private": true,
"version": "0.1.0",
"author": "CKSource (https://cksource.com/)",
"license": "SEE LICENSE.md",
"homepage": "https://ckeditor.com",
"scripts": {
"prepare": "husky",
"lint": "eslint \"**/*.{js,ts,jsx,tsx}\"",
"build": "yarn workspaces run build"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-ckeditor5": "^7.1.0",
"eslint-plugin-react": "^7.36.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"workspaces": [
"abbreviation-plugin/*",
"block-widget/*",
"crash-course",
"data-from-external-source/*",
"inline-widget/*",
"pagination-and-exports/*",
"react-widget/*",
"sample-project",
"timestamp-plugin/*"
],
"eslintIgnore": [
"**/dist",
"**/node_modules"
],
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": [
"eslint --quiet"
]
}
}