-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.62 KB
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
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"build-all": "lerna run build",
"clean": "lerna run clean --parallel",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --ext .js,.ts . --quiet --fix",
"release": "lerna publish",
"prettify:packages": "lerna exec -- sort-package-json && sort-package-json",
"prettify": "run-s prettify:*",
"test": "lerna run test --stream",
"verify": "lerna run verify --parallel",
"lint-staged": "lint-staged",
"publish-all": "lerna publish"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/src/package.json": [
"yarn run prettify:packages"
],
"package.json": [
"yarn run prettify:packages"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"babel-jest": "^29.7.0",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"fs-extra": "^11.1.1",
"jest": "^29.7.0",
"lerna": "^5.5.0",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"sort-package-json": "^2.6.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}