-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"name": "workspace",
"version": "0.0.1",
"packageManager": "yarn@3.2.1",
"devDependencies": {
"@jest/types": "^28.1.3",
"@rushstack/eslint-patch": "^1.1.4",
"@saberhq/eslint-config": "^2.0.3",
"@saberhq/tsconfig": "^2.0.3",
"@types/eslint": "^8.4.5",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@types/prettier": "^2.6.3",
"@typescript-eslint/utils": "^5.30.7",
"@yarnpkg/doctor": "^3.1.3",
"eslint": "^8.20.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-runtime": "^28.1.3",
"jsbi": "^4.3.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
},
"scripts": {
"build": "tsc --build",
"publish:all": "yarn workspaces foreach --exclude workspace -vpti --topological-dev npm publish",
"docs:generate": "typedoc .",
"bump": "yarn workspaces foreach -t version",
"test": "jest --passWithNoTests",
"lint": "eslint . --cache",
"lint:ci": "eslint . --max-warnings=0",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{md,js,json,yml,yaml,css,md}": "prettier --write"
}
}