-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
42
43
44
45
46
47
48
{
"name": "@thnetii/eslint-config-workspace-root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/thnetii/eslint-config.git"
},
"author": {
"name": "TH-NETII Rasch Solutions",
"email": "fredrik.rasch@gmail.com",
"url": "https://thnetii.td.org.uit.no"
},
"maintainers": [
"Fredrik Høisæther Rasch <fredrik.rasch@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thnetii/eslint-config/issues"
},
"homepage": "https://github.com/thnetii/eslint-config#readme",
"keywords": [
"eslint",
"eslint-config"
],
"workspaces": [
"src/*"
],
"scripts": {
"lint": "npm-run-all --continue-on-error lint:*",
"lint:tsc": "tsc -p ./jsconfig.json",
"lint:eslint": "eslint -c ./.eslintrc.yml .",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"devDependencies": {
"@tsconfig/node20": "^20",
"@tsconfig/strictest": "^2",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3",
"typescript": "^5.0"
}
}