forked from owncloud/cdperf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "@ownclouders/eslint-config",
"version": "0.0.1",
"private": true,
"description": "common eslint config used withing @ownclouders namespace.",
"homepage": "https://github.com/owncloud/cdperf/tree/master/packages/eslint-config",
"repository": {
"type": "git",
"url": "https://github.com/owncloud/cdperf",
"directory": "packages/eslint-config"
},
"license": "AGPL-3.0",
"author": "ownCloud GmbH <[email protected]>",
"main": "index.js",
"scripts": {
"clean": "pnpm clean:vendor",
"clean:vendor": "del-cli node_modules",
"lint": "eslint package.json index.js",
"lint:fix": "pnpm run lint --fix"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.10.3",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json-files": "^2.2.0",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"eslint-plugin-relative-imports-when-same-folder": "^0.0.4",
"eslint-plugin-simple-import-sort": "^10.0.0"
},
"devDependencies": {
"del-cli": "^5.0.0",
"eslint": "^8.43.0",
"typescript": "^5.1.3"
}
}