forked from leanprover/vscode-lean4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.32 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
{
"name": "@leanprover/vscode-lean4-repo",
"private": true,
"scripts": {
"build": "lerna run --stream build",
"test": "lerna run --stream test",
"watch": "lerna run --parallel --stream watch",
"watchTest": "lerna run --parallel --stream watchTest",
"lint": "eslint -c .eslintrc.js \"{lean4-infoview-api,lean4-infoview,lean4-unicode-input,lean4-unicode-input-component,vscode-lean4}/src/**/*.{ts,tsx}\" \"vscode-lean4/test/suite/**/*.{ts,tsx}\"",
"prepare": "husky install"
},
"workspaces": [
"lean4-infoview-api",
"lean4-infoview",
"lean4-unicode-input",
"lean4-unicode-input-component",
"vscode-lean4"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,css}": "prettier --write"
}
}