forked from siemens/ix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.09 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
{
"private": true,
"name": "ix",
"version": "1.2.1",
"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": {
"npm": ">=8.x.x",
"node": ">=16.16.x"
},
"workspaces": [
"packages/*"
],
"scripts": {
"docs": "turbo run start --filter=documentation",
"build": "turbo run build",
"start": "turbo run start",
"clean": "npx rimraf ./**/node_modules",
"turbo": "turbo",
"lint": "turbo run lint",
"generate-documentation-version": "yarn workspace documentation run generate-version",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "node ./scripts/release.js",
"push-git": "node ./scripts/push-git.js",
"sonarqube": "sonar-scanner",
"visual-regression-ci": "npx playwright install chromium && yarn workspace @siemens/ix test:e2e && yarn workspace @siemens/ix-aggrid test:e2e",
"visual-regression": "docker run --rm --network host -v $(pwd):/work/ -w /work mcr.microsoft.com/playwright:v1.24.0-focal /bin/bash -c \"CI=TRUE npm run visual-regression-ci\"",
"test": "turbo run test",
"prepare": "husky install"
},
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@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",
"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.4.3",
"typescript": "~4.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}