-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.82 KB
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
{
"name": "jconfig",
"description": "Prettier & Eslint configuration",
"author": "Jamyth",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-typescript": "11.0.0",
"@types/eslint": "8.21.3",
"@types/eslint-config-prettier": "6.11.0",
"@types/node": "18.15.5",
"@types/prettier": "2.7.2",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"chalk": "4.1.0",
"confusing-browser-globals": "1.0.11",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-iamyth": "1.0.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sonarjs": "0.19.0",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.6",
"rollup": "3.20.0",
"rollup-plugin-terser": "7.0.2",
"ts-node": "10.9.1",
"typescript": "5.0.2"
},
"scripts": {
"build:eslint": "rollup --config tools/eslint-config-iamyth/rollup.config.mjs",
"format:eslint": "prettier --write packages/",
"lint:eslint": "eslint --ext .js,.ts packages/eslint-config-iamyth"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,json,ts}": "prettier --write"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
}
}