forked from siemens/ix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
{
"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"
},
"engines": {
"pnpm": ">=9.x.x",
"node": ">=18.x.x"
},
"scripts": {
"docs": "dotenv -- turbo run start --filter=documentation",
"build": "dotenv -- turbo run build",
"pkg": "dotenv -- turbo run pkg",
"start": "dotenv -- turbo run start",
"turbo": "dotenv -- turbo",
"lint": "dotenv -- turbo run lint",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"visual-regression": "dotenv -- turbo run visual-regression",
"test": "dotenv -- turbo run test",
"prepare": "husky install",
"ci:version": "pnpm changeset version && pnpm i --lockfile-only",
"ci:publish": "pnpm changeset publish"
},
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"colorette": "^2.0.19",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"execa": "^5.1.1",
"husky": "^8.0.1",
"inquirer": "^8.2.4",
"listr": "^0.14.3",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^3.2.1",
"semver": "^7.3.7",
"sonarqube-scanner": "^2.8.1",
"turbo": "^1.10.16",
"typescript": "~4.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}