forked from equinor/witsml-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.11 KB
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
42
{
"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": [
"Src/WitsmlExplorer.Frontend"
],
"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"
],
"*.{ts,tsx}": [
"eslint",
"npx prettier --check ."
]
},
"devDependencies": {
"@types/react": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint-config-react": "^1.1.7",
"husky": "^7.0.2",
"lint-staged": "^11.1.2"
}
}