forked from thomvaill/log4brains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.35 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
{
"name": "root",
"private": true,
"engines": {
"node": ">=12"
},
"workspaces": [
"packages/**"
],
"scripts": {
"dev": "lerna run --parallel dev",
"build": "lerna run --stream build",
"clean": "lerna run clean",
"typescript": "lerna run --stream typescript",
"test": "lerna run --stream test",
"test:changed": "lerna run --stream --since HEAD test",
"lint": "lerna run --stream lint",
"format": "prettier-eslint \"$PWD/**/{.,}*.{js,jsx,ts,tsx,json,md}\" --list-different",
"format:fix": "yarn format --write",
"typedoc": "lerna run typedoc",
"serve-log4brains": "serve .log4brains/out",
"link-cli": "lerna run --stream link",
"unlink-cli": "lerna run --stream unlink",
"e2e": "node e2e-tests/e2e-launcher.js",
"lerna": "lerna",
"release": "./scripts/release.sh"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-sonarjs": "^0.5.0",
"execa": "^4.1.0",
"husky": "^4.3.5",
"jest": "^26.4.2",
"jest-mock-extended": "^1.0.10",
"lerna": "^5.5.2",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"prettier-eslint-cli": "^5.0.0",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"ts-jest": "^26.4.0",
"typedoc": "0.17.0-3",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn typescript",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --max-warnings=0",
"*.{js,jsx,ts,tsx,json,md}": "prettier-eslint --list-different"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}