-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
49
50
51
{
"name": "@ackee/styleguide-backend-config",
"description": "styleguide-backend-config",
"version": "1.0.0",
"author": "Jaroslav Šmolík <[email protected]>",
"contributors": [
"Pavel Švagr <[email protected]>"
],
"files": [
"dist/*",
"eslint.js",
"prettier.js"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/styleguide-backend-config"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [],
"scripts": {
"build": "tsc",
"lint": "eslint --ignore-path .gitignore '**/*.ts' -f codeframe",
"lint:fix": "eslint --ignore-path .gitignore '**/*.ts' --fix",
"prettier": "prettier --ignore-path .gitignore --check '**/*.{ts,js,json,md}'",
"prettier:fix": "npm run prettier -- --write '**/*.{ts,js,json,md}'"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"cspell-lib": "^6.17.0",
"eslint": "^8.57.0",
"eslint-config-love": "^84.1.1",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^2.0.4",
"prettier": "^3.4.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"typescript": "^5.4.2"
}
}