forked from db-ui/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 4.19 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
{
"name": "@db-ui/elements-monorepo",
"version": "0.0.0",
"scripts": {
"prepare": "cd showcase/react-showcase && npm i && cd ../angular-showcase && npm i && cd ../vue-showcase && npm i && cd ../playground-showcase && npm i && cd ../../ && husky install",
"start": "concurrently \"npm run build.watch.enterprise --workspace=@db-ui/elements\" \"npm run start:storybook\"",
"start:storybook": "start-storybook -c .storybook -p 6006 --ci",
"watch:showcase:react": "concurrently \"npm run build.watch.local --workspace=@db-ui/elements\" \"npm run watch --workspace=@db-ui/react-elements\"",
"build": "npm run build --workspace=@db-ui/elements",
"build:storybook": "build-storybook -c .storybook -o out",
"build:local:angular": "node scripts/build angular",
"build:local:react": "node scripts/build react",
"build:local:vue": "node scripts/build vue",
"test": "npm run test --workspace=@db-ui/elements",
"cypress": "npx cypress run --project ./e2e --env type=actual",
"cypress:watch": "npx cypress open --project ./e2e --env type=actual",
"cypress:ci": "start-server-and-test start:storybook http://localhost:6006 cypress",
"cypress:full": "node scripts/build angular,playground,react,reactwind,vue withShowcase && concurrently \"npm run cypress:watch\" \"npm run start:storybook\"",
"cypress:snapshot:base": "npx cypress run --project ./e2e --env type=base --config screenshotsFolder=e2e/cypress/snapshots/base",
"postcypress:snapshot:base": "rimraf e2e/cypress/snapshots/base/**/*-base-*.png && node ./scripts/cypress/snapshot-helper.js",
"lint:markdownlint": "markdownlint -c .markdown-lint.yml '**/*.md'",
"lint:stylelint": "stylelint **/*.scss",
"lint:eslint": "eslint . --ext .ts,.js --ignore-path .gitignore --ignore-path .eslintignore && npm run lint --workspace=@db-ui/elements",
"generate": "npm run generate --workspace=@db-ui/elements",
"clean": "git clean -dfx --exclude=.env"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-controls": "6.5.16",
"@storybook/addon-docs": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/html": "6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "6.5.16",
"@storybook/web-components": "6.5.16",
"@types/estree": "1.0.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-loader": "9.1.2",
"concurrently": "7.6.0",
"conventional-changelog-cli": "^2.2.2",
"cpr": "3.0.1",
"dotenv": "^16.0.3",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "0.6.11",
"eslint-plugin-vue": "^9.9.0",
"file-system-cache": "2.0.2",
"find-versions-cli": "^4.0.0",
"husky": "8.0.3",
"iframe-resizer": "4.3.4",
"jest-config": "29.4.3",
"markdownlint-cli": "^0.33.0",
"node-mv": "^0.1.3",
"postcss": "^8.4.21",
"prettier": "2.8.4",
"pretty-quick": "3.1.3",
"replace-in-file": "6.3.5",
"start-server-and-test": "1.15.4",
"stylelint": "^14.16.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^6.1.0",
"typescript": "4.9.5",
"validate-branch-name": "^1.3.0",
"xml": "1.0.1"
},
"validate-branch-name": {
"pattern": "((dependabot-)|^((test|feat|fix|chore|docs|refactor|style|ci|perf|[0-9]+)\\-[a-zA-Z0-9\\-]+)$)",
"errorMsg": "There is something wrong with your branch name. You should rename your branch to a valid name and try again. See the Pattern below."
},
"repository": {
"type": "git",
"url": "https://github.com/db-ui/elements.git"
},
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://db-ui.github.io/elements/",
"engines": {
"npm": "^8.1.0"
}
}