-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "onyx",
"version": "0.0.0",
"description": "WIP: A modular modern TypeScript testing framework.",
"repository": "[email protected]:onyxjs/onyx.git",
"author": "Elijah Kotyluk <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"commit": "npx git-cz",
"test": "lerna run test --stream",
"lint": "lerna run --no-bail lint --stream",
"lint:fix": "lerna run --no-bail lint:fix --stream",
"lint:all": "eslint .",
"build": "lerna run build --stream",
"dev": "lerna run dev --stream",
"watch": "lerna run watch --stream"
},
"husky": {
"hooks": {
"pre-commit": "lerna run lint:fix --concurrency 1 --since HEAD"
}
},
"lint-staged": {
"*.[jt]s": [
"lerna run lint:fix",
"git add",
"lerna run test -- --bail --findRelatedTests"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"commitizen": "4.2.4",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^2.7.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.2.1",
"yarn-audit-fix": "^9.0.5"
}
}