-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "@hyper/root",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/**",
"packages/*/examples"
]
},
"lint-staged": {
"*.{js,ts,tsx}": "yarn lint"
},
"scripts": {
"build": "tsc --build",
"build:clean": "tsc --clean",
"build:watch": "tsc --build --watch",
"test": "jest -c jest.unit.js",
"test:coverage": "jest -c jest.unit.js --coverage",
"test:watch": "jest -c jest.unit.js --watch",
"int": "jest -c jest.int.js",
"int:watch": "jest -c jest.unit.js --coverage",
"int:detect": "jest -c jest.unit.js --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:watch": "eslint . --fix --watch",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]"
}