-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "@commencis/js-toolkit",
"description": "Commencis JavaScript Toolkit for Coding Standards",
"keywords": [
"commencis",
"javascript",
"typescript",
"toolkit",
"config",
"coding-standards",
"style-guide",
"lint",
"eslint",
"prettier",
"stylelint",
"commitlint"
],
"private": true,
"author": "Commencis WEB Team",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">= 20.18"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm run build",
"dev": "turbo run dev",
"build": "turbo run build",
"lint:types": "turbo run lint:types",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:format": "prettier . --check",
"lint:format:fix": "prettier . --write --list-different",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm run build && changeset publish",
"ci:review": "pnpm run lint && pnpm run test",
"precommit": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@commencis/commitlint-config": "1.1.1",
"@commencis/eslint-config": "1.5.1",
"@commencis/prettier-config": "1.1.0",
"@commitlint/cli": "19.6.0",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@vitest/coverage-v8": "2.1.8",
"eslint": "9.16.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"turbo": "2.3.3",
"vitest": "2.1.8"
}
}