-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.36 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.36 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
{
"private": true,
"scripts": {
"build": "pnpm use-prod-typings && pnpm clean:coverage && pnpm clean:dist && lerna exec \"tsc --project .\"",
"build-and-qa": "pnpm build && pnpm qa",
"build:watch": "pnpm use-dev-typings && pnpm clean:dist && lerna exec --parallel \"tsc --project . --watch\"",
"clean": "pnpm clean:dist && rimraf --glob \"packages/*/coverage\" lerna-debug.log",
"clean:coverage": "rimraf coverage --glob \"packages/*/coverage\"",
"clean:dist": "rimraf --glob \"packages/*/coverage packages/*/dist\" lerna-debug.log",
"clean:full": "pnpm clean && rimraf --glob \"packages/*/node_modules\" node_modules",
"fix": "npm-run-all --continue-on-error fix:*",
"fix:eslint": "eslint --fix \"**/*\"",
"fix:markdownlint": "markdownlint --fix \"**/*\"",
"fix:pnpm-dedupe": "pnpm dedupe",
"fix:prettier": "prettier --write .",
"lint": "npm-run-all --continue-on-error lint:*",
"lint:eslint": "eslint \"**/*\" --report-unused-disable-directives",
"lint:markdownlint": "markdownlint \"**/*\"",
"lint:pnpm-dedupe": "pnpm dedupe --check",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --project .",
"prepare": "husky",
"qa": "pnpm lint && pnpm test --coverage",
"release": "pnpm 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.6.0",
"@tsconfig/node22": "22.0.2",
"@tsconfig/recommended": "1.0.10",
"@tsconfig/strictest": "2.0.6",
"@types/jest": "30.0.0",
"@types/node": "24.5.2",
"eslint": "8.57.1",
"husky": "9.1.7",
"jest": "30.1.3",
"lerna": "9.0.0",
"lint-staged": "16.2.1",
"markdownlint-cli": "0.45.0",
"npm-run-all": "4.1.5",
"prettier": "3.6.2",
"prettier-plugin-elm": "0.12.0",
"prettier-plugin-packagejson": "2.5.19",
"replace": "1.2.2",
"rimraf": "6.0.1",
"suppress-exit-code": "3.2.0",
"ts-jest": "29.4.4",
"typescript": "5.9.2"
},
"packageManager": "pnpm@10.17.1"
}