-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
40 lines (40 loc) · 1010 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": "witsml-explorer-root",
"version": "1.0.0",
"private": true,
"description": "The root package.json for Witsml Explorer",
"homepage": "https://github.com/equinor/witsml-explorer#readme",
"bugs": {
"url": "https://github.com/equinor/witsml-explorer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/equinor/witsml-explorer.git"
},
"license": "Apache-2.0",
"workspaces": {
"packages": [
"Src/WitsmlExplorer.Desktop",
"Src/WitsmlExplorer.Frontend"
],
"nohoist": [
"**electron**"
]
},
"scripts": {
"dotnet-format": "dotnet tool run dotnet-format --check",
"dotnet-format:fix": "dotnet tool run dotnet-format",
"eslint": "eslint . --cache",
"eslint:fix": "eslint . --cache --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{cs,vb}": [
"dotnet tool run dotnet-format --include"
]
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^15.2.4"
}
}