-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 3.79 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
107
108
109
110
{
"name": "react-web-components",
"private": true,
"version": "0.0.0",
"description": "DB React components for building websites and applications fast in the look and feel of Deutsche Bahn AG",
"scripts": {
"add-component": "yarn hygen component new",
"postadd-component": "yarn build:react",
"dev": "yarn workspace docs dev",
"pretest": "yarn build:react-icons",
"test": "CI=true jest packages --ci",
"test:dev": "jest packages --watch",
"test:coverage": "jest --coverage",
"update-snapshots": "jest --updateSnapshot",
"prelint": "yarn build:react-icons",
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "eslint . --ext .js,.ts,.tsx",
"lint:js:fix": "yarn lint:js --fix",
"lint:styles": "stylelint \"**/*.scss\" --fix",
"lint:styles:fix": "yarn lint:styles --fix",
"depcheck": "depcheck && yarn workspaces run depcheck",
"docs:props-table": "node scripts/add-props-table/index.mjs",
"prebuild:docs": "yarn build:react-icons && yarn build:react && yarn build:react-extra",
"build:docs": "yarn workspace docs build",
"build": "yarn build:react-icons && yarn build:react && yarn build:react-extra",
"build:react-icons": "yarn workspace @db-design/react-icons build",
"build:react": "yarn workspace @db-design/react build",
"build:react-extra": "yarn workspace @db-design/react-extra build",
"release:styles": "yarn workspace @db-design/styles release",
"release:react-icons": "yarn build:react-icons && yarn workspace @db-design/react-icons release",
"release:react": "yarn build:react-icons && yarn build:react && yarn workspace && yarn docs:props-table && @db-design/react release",
"release:react-extra": "yarn workspace @db-design/react-extra release",
"commit": "git-cz",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "[email protected]:bahn-x/webdev/web.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://git.tech.rz.db.de/bahn-x/webdev/web#readme",
"bugs": {
"url": "https://git.tech.rz.db.de/bahn-x/webdev/web/-/issues"
},
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.2.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"jest --findRelatedTests"
],
"*.scss": [
"stylelint --fix"
],
"packages/react/src/**/!(*-doc).tsx": [
"yarn docs:props-table"
]
},
"dependencies": {},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^11.0.0",
"@testing-library/jest-dom": "^5.11.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"cz-customizable": "^6.3.0",
"depcheck": "^1.4.3",
"esbuild": "^0.14.11",
"esbuild-jest": "^0.5.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unicorn": "^40.0.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"hygen": "^6.1.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"marked": "^4.0.12",
"react-docgen-typescript": "^2.2.2",
"react-test-renderer": "^17.0.1",
"stylelint": "^13.8.0",
"stylelint-config-sass-guidelines": "^9.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"resolutions": {
"ansi-regex": "^5.0.1",
"browserslist": "^4.16.5",
"chokidar": "^3",
"colors": "0.6.2",
"immer": "^9.0.6"
},
"workspaces": [
"packages/*"
]
}