-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
76 lines (76 loc) · 2.9 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": [
"packages/*"
]
},
"scripts": {
"build": "yarn use-prod-typings && yarn clean:coverage && yarn clean:dist && lerna exec \"tsc --project .\"",
"build-and-qa": "yarn build && yarn qa",
"build:watch": "yarn use-dev-typings && yarn clean:dist && lerna exec --parallel \"tsc --project . --watch\"",
"clean": "yarn clean:dist && rimraf packages/*/coverage packages/*/yarn-error.log yarn-error.log lerna-debug.log",
"clean:coverage": "rimraf coverage packages/*/coverage",
"clean:dist": "rimraf packages/*/coverage packages/*/dist packages/*/yarn-error.log yarn-error.log lerna-debug.log",
"clean:full": "yarn clean && rimraf packages/*/node_modules node_modules",
"fix": "npm-run-all --continue-on-error fix:*",
"fix:eslint": "eslint --fix \"**/*\"",
"fix:markdownlint": "markdownlint --fix \"**/*\"",
"fix:prettier": "prettier --write .",
"fix:yarn-deduplicate": "yarn install && yarn-deduplicate --strategy=fewer && yarn install",
"lint": "npm-run-all --continue-on-error lint:*",
"lint:eslint": "eslint \"**/*\" --report-unused-disable-directives",
"lint:markdownlint": "markdownlint \"**/*\"",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --project .",
"lint:yarn-deduplicate": "yarn-deduplicate --fail --list --strategy=fewer",
"prepare": "husky install",
"qa": "yarn lint && yarn test --coverage",
"release": "yarn build-and-qa && lerna publish",
"test": "jest",
"test-by-package": "lerna exec jest",
"use-dev-typings": "lerna exec \"replace --quiet dist\\/index\\.d\\.ts src/index.ts package.json\"",
"use-prod-typings": "lerna exec \"replace --quiet src\\/index\\.ts dist/index.d.ts package.json\""
},
"lint-staged": {
"**/*": [
"eslint --fix",
"suppress-exit-code markdownlint --fix",
"prettier --write"
]
},
"devDependencies": {
"@kachkaev/eslint-config-base": "^0.2.3",
"@types/cheerio": "0.22.21",
"@types/eslint": "^7.28.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.4",
"@types/kind-of": "^6.0.0",
"@types/lodash": "^4.14.173",
"@types/lodash.snakecase": "^4.1.6",
"@types/lru-cache": "^5.1.1",
"@types/markdown-it": "^12.2.1",
"@types/node": "^14.17.18",
"@types/object-hash": "^2.2.1",
"@types/unist": "^2.0.6",
"@types/yamljs": "^0.2.31",
"eslint": "^7.32.0",
"globby": "^11.0.4",
"husky": "^7.0.2",
"jest": "^29.7.0",
"lerna": "^7.2.0",
"lint-staged": "^11.1.2",
"markdownlint-cli": "^0.36.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-elm": "^0.11.0",
"prettier-plugin-packagejson": "^2.4.5",
"replace": "^1.2.2",
"rimraf": "^3.0.2",
"suppress-exit-code": "^1.0.0",
"ts-jest": "^29.1.1",
"typescript": "^4.4.3",
"yarn-deduplicate": "^3.1.0"
},
"packageManager": "[email protected]"
}