-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
76 lines (76 loc) · 2.61 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
{
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build --filter=\"@acot/*\"",
"clean": "yarn clean:cache",
"clean:all": "run-s clean:cache clean:deps",
"clean:cache": "rimraf \".turbo\" \"packages/**/tsconfig.tsbuildinfo\" \"packages/**/lib\" \"**/.acot\" \"**/.turbo\"",
"clean:deps": "rimraf \"packages/*/node_modules\" \"examples/*/node_modules\" node_modules",
"docgen": "turbo run docgen",
"format": "run-s format:prettier format:script",
"format:prettier": "prettier --write .",
"format:script": "yarn lint:script --fix",
"lint": "run-p lint:*",
"lint:prettier": "prettier --check .",
"lint:script": "eslint . --ext \".js,.jsx,.ts,.tsx\"",
"linkall": "lerna exec --scope \"@acot/*\" --parallel yarn link",
"unlinkall": "lerna exec --scope \"@acot/*\" --parallel --bail=false yarn unlink",
"release": "lerna publish from-package",
"release:canary": "yarn release --dist-tag canary",
"scaffold": "yarn scaffdog generate",
"test": "turbo run test --filter=\"@acot/*\"",
"versionup": "lerna version",
"versionup:canary": "lerna version prerelease --preid canary",
"versionup:cancel": "git tag --points-at @ | xargs -I{} git tag --delete {} && git reset --hard @^",
"versionup:major": "lerna version major",
"versionup:minor": "lerna version minor",
"versionup:patch": "lerna version patch",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,yml,json}": [
"prettier --write"
]
},
"resolutions": {
"@types/history": "5.0.0",
"@types/reach__router": "1.3.10",
"history": "5.3.0"
},
"devDependencies": {
"@acot/tsconfig": "0.1.0",
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@commitlint/config-lerna-scopes": "16.2.4",
"@types/jest": "26.0.24",
"@types/markdown-table": "2.0.0",
"@types/mock-fs": "4.13.1",
"@types/node": "16.11.36",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"cross-env": "7.0.3",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.2.2",
"husky": "7.0.4",
"jest": "26.6.3",
"lerna": "4.0.0",
"lint-staged": "10.5.4",
"mock-fs": "5.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"prettier-plugin-packagejson": "2.2.18",
"rimraf": "3.0.2",
"scaffdog": "1.2.0",
"ts-jest": "26.5.6",
"ts-node": "9.1.1",
"turbo": "1.2.9",
"type-fest": "2.12.2",
"typescript": "4.6.4"
}
}