-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
72 lines (72 loc) · 2.28 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
{
"private": true,
"name": "mono-repo-ix",
"version": "0.0.0",
"license": "MIT",
"description": "Siemens iX monorepo",
"author": "Siemens AG",
"homepage": "https://www.github.com/siemens/ix",
"repository": {
"type": "git",
"url": "https://www.github.com/siemens/ix.git"
},
"bugs": {
"url": "https://www.github.com/siemens/ix/issues"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": ">=9.x.x",
"node": ">=18.x.x"
},
"scripts": {
"docs": "dotenv -- turbo run start --filter=documentation",
"build": "dotenv -- turbo run build",
"storybook": "dotenv -- turbo run storybook",
"start": "dotenv -- turbo run start",
"turbo": "dotenv -- turbo",
"lint": "dotenv -- turbo run lint",
"format": "prettier --write ./packages/**/src/**/*.{ts,tsx,js,jsx,css,scss,html,vue,json}",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"visual-regression": "dotenv -- turbo run visual-regression",
"test": "dotenv -- turbo run test",
"prepare": "pnpm git-hooks && pnpm disable-telemetry",
"disable-telemetry": "turbo telemetry disable",
"git-hooks": "husky install",
"compare-examples": "node ./scripts/compare-preview-examples-across-test-apps.js",
"ci:version": "pnpm changeset version && pnpm i --lockfile-only",
"ci:publish": "pnpm changeset publish",
"ts-run": "tsx"
},
"dependencies": {
"commander": "^12.1.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"execa": "^5.1.1",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^3.2.1",
"tsx": "^4.15.4",
"turbo": "^2.0.4",
"typescript": "^5.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pnpm": {
"patchedDependencies": {
"@stencil/[email protected]": "patches/@[email protected]",
"@stencil/[email protected]": "patches/@[email protected]"
}
}
}