forked from equinor/witsml-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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": "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"
},
"lint-staged": {
"*.{cs,vb}": [
"dotnet tool run dotnet-format --check --include"
],
"*.{ts,tsx}": [
"eslint",
"npx prettier --check ."
]
},
"devDependencies": {
"@types/react": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint-config-react": "^1.1.7",
"husky": "^6.0.0",
"lint-staged": "^11.0.0"
}
}