-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "react-math-editor-monorepo",
"version": "1.0.0-alpha.1",
"private": true,
"workspaces": [
"lib",
"website"
],
"scripts": {
"build": "yarn build:package && yarn build:website",
"build:package": "yarn workspace react-math-editor build",
"build:website": "yarn workspace react-math-editor-website build",
"publish:package": "cd lib && yarn build && npm publish",
"lint": "eslint --cache \"**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --config .prettierrc --write \"**/*.{js,jsx,ts,tsx,json,md,mdx}\"",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-jc": "^1.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx}": [
"prettier --write"
]
}
}