-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint .",
"version": "lerna version",
"publish": "lerna publish from-git"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciancooper/app-toolkit.git"
},
"author": "Lucian Cooper <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luciancooper/app-toolkit/issues"
},
"homepage": "https://github.com/luciancooper/app-toolkit#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@lcooper"
]
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.scss": [
"stylelint"
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@lcooper/commitlint-config": "^1.1.0",
"@lcooper/eslint-config": "^1.1.3",
"@lcooper/eslint-config-react": "^1.1.2",
"@lcooper/stylelint-config-scss": "^1.0.1",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"stylelint": "^13.8.0"
}
}