-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 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
62
63
64
65
66
67
68
69
{
"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": "pnpm@10.17.0",
"engines": {
"pnpm": ">=9.x.x",
"node": "22.19.0"
},
"scripts": {
"docs": "dotenv -- turbo run start --filter=documentation",
"build": "dotenv -- turbo run build",
"storybook": "dotenv -- turbo run storybook",
"start": "dotenv -- turbo run start",
"turbo": "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 --concurrency=1",
"test.setup": "dotenv -- turbo run test.setup --concurrency=1",
"prepare": "pnpm disable-telemetry",
"disable-telemetry": "turbo telemetry disable",
"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": "^13.1.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@actions/core": "^1.11.1",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"dotenv-cli": "^7.4.2",
"eslint": "catalog:",
"eslint-config-prettier": "^8.10.0",
"execa": "^5.1.1",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.4",
"tsx": "^4.16.2",
"turbo": "^2.1.1",
"typescript": "^5.5.4"
},
"pnpm": {
"overrides": {
"cheerio": "1.0.0-rc.12",
"rollup": "npm:@rollup/wasm-node"
}
},
"volta": {
"node": "22.19.0"
}
}