generated from techmmunity/base-project-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.19 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@techmmunity/eslint-config",
"version": "5.2.4",
"license": "Apache-2.0",
"author": "Techmmunity",
"description": "Techmmunity Style Guide",
"homepage": "https://github.com/techmmunity/eslint-config#readme",
"bugs": {
"url": "https://github.com/techmmunity/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techmmunity/eslint-config.git"
},
"keywords": [
"eslint",
"eslintconfig",
"techmmunity",
"jest",
"best-practices",
"clean-code",
"solid",
"dry",
"kiss",
"typescript",
"code-style",
"config",
"styleguide",
"react",
"nextjs",
"prettier",
"tslint"
],
"peerDependencies": {
"eslint": "^8.1.0",
"prettier": "^2.3.0",
"typescript": "^4.5.5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@next/eslint-plugin-next": "^12.2.5",
"@rushstack/eslint-patch": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.2.1-alpha-4298ddbc5-20211023",
"eslint-plugin-sonarjs": "^0.15.0"
},
"devDependencies": {
"eslint": "^8.23.0",
"husky": "^8.0.1",
"lint-staged": "13.0.3",
"prettier": "^2.3.0",
"typescript": "^4.8.2"
},
"scripts": {
"prepare": "husky install",
"build": "./scripts/build.sh",
"format": "eslint . --fix --quiet --ignore-pattern docs",
"lint": "eslint . --quiet --ignore-pattern docs",
"upgrade:dependencies": "yarn upgrade-interactive --latest",
"husky:pre-commit": "lint-staged",
"husky:install": "husky install",
"lk": "yarn build && cd dist && yarn link && cd ..",
"ulk": "yarn unlink && yarn lk"
}
}