-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 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
{
"name": "sc-commons-public",
"private": true,
"repository": "https://github.com/shiftcode/sc-commons-public",
"license": "MIT",
"author": "shiftcode GmbH <team@shiftcode.ch>",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build:ci": "lerna run build",
"build:lint:ci": "lerna run build --scope @shiftcode/eslint-plugin-rules && lerna run build --scope @shiftcode/eslint-config-recommended",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"lint:ci": "lerna run lint:ci",
"prepare": "husky",
"publish-libs": "node packages/publish-helper/dist/publish-lib",
"test:ci": "lerna run test:ci"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@commitlint/prompt-cli": "^20.4.1",
"@types/node": "^24.12.0",
"eslint": "^9.36.0",
"husky": "^9.0.11",
"lerna": "^9.0.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"sort-package-json": "^2.10.0",
"tslib": "^2.3.0",
"typescript": "^5.5.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24.10.2",
"npm": ">=11.9.0"
}
}