-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"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:lint:ci",
"lint:ci": "lerna run lint:ci",
"prepare": "husky",
"prettier": "lerna run prettier",
"publish-libs": "node packages/publish-helper/dist/publish-lib",
"test:ci": "lerna run test:ci"
},
"dependencies": {
"lerna": "^8.1.6",
"tslib": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@commitlint/prompt-cli": "^19.3.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.15.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"sort-package-json": "^2.10.0",
"ts-jest": "^29.2.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=22.15.0"
}
}