-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
106 lines (106 loc) · 3.29 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "tegel-monorepo",
"version": "0.0.0",
"description": "Tegel Digital Design System",
"private": true,
"main": "index.js",
"scripts": {
"start": "cd packages/core && npm run storybook",
"build": "cd packages/core && npm run build",
"build:angular": "npm run build && cd packages/angular && npm i && npm run build",
"build:angular-17": "npm run build && cd packages/angular-17 && npm i && npm run build",
"build:react": "npm run build && cd packages/react && npm i && npm run build ",
"build:all": "npm run build && (cd packages/angular && npm i && npm run build) && (cd packages/angular-17 && npm i && npm run build) && (cd packages/react && npm i && npm run build)",
"test": "cd packages/core && npm run test",
"commit": "cz",
"prepare": "husky install",
"reinstall": "./reinstall.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scania-digital-design-system/tegel.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/scania-digital-design-system/tegel/issues"
},
"homepage": "https://github.com/scania-digital-design-system/tegel#readme",
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^22.10.7",
"commitizen": "^4.3.0",
"commitlint": "^15.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-storybook": "^0.5.7",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.7.1",
"stylelint": "^14.6.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"feat": {
"description": "A new feature",
"value": "feat"
},
"fix": {
"description": "A bug fix or improvement",
"value": "fix"
},
"docs": {
"description": "Documentation changes",
"value": "docs"
},
"style": {
"description": "Code style changes",
"value": "style"
},
"refactor": {
"description": "Code refactoring",
"value": "refactor"
},
"test": {
"description": "Adding or updating tests",
"value": "test"
},
"chore": {
"description": "Build process or tooling changes",
"value": "chore"
},
"build": {
"description": "Changes related to the build system",
"value": "build"
},
"ci": {
"description": "Changes to your CI configuration or scripts",
"value": "ci"
},
"release": {
"description": "Release version tag",
"value": "release"
}
}
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint",
"**/*.scss": "stylelint --fix",
"**/*.{js,jsx,ts,tsx,scss,md,yml,yaml}": "prettier --write"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=22.11.0"
}
}