forked from SAP/ui5-webcomponents-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4 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
111
112
113
114
115
116
{
"workspaces": [
"packages/*"
],
"private": true,
"license": "Apache-2.0",
"scripts": {
"start": "lerna run build:i18n && start-storybook --no-manager-cache -p 6006 -c .storybook -s .storybook/images-dev",
"build": "npm-run-all -s clean build:bundle build:types",
"build:bundle": "lerna run build --stream",
"build:types": "lerna run build:types --stream",
"build:storybook": "lerna run build:i18n && build-storybook -c .storybook -o .out -s .storybook/images",
"postinstall": "rimraf node_modules/@types/mocha",
"pretest": "rimraf coverage && lerna run build:i18n",
"test": "jest --config=config/jest.config.js --coverage",
"clean": "lerna run clean --stream && rimraf coverage",
"prettier:all": "prettier --write --config ./prettier.config.cjs \"packages/**/*.{ts,tsx,mdx}\"",
"lint": "eslint packages",
"lerna:version-dryrun": "lerna version --conventional-graduate --no-git-tag-version --no-push",
"deploy:storybook": "storybook-to-ghpages --script=build:storybook --ci",
"create-webcomponents-wrapper": "node --experimental-json-modules ./packages/main/scripts/create-web-components-wrapper.mjs",
"examples:recreate-seed": "rimraf examples/seed-test && yarn create react-app examples/seed-test --template file:./packages/cra-template-seed",
"examples:start-seed": "cd examples/seed-test && SKIP_PREFLIGHT_CHECK=true yarn start",
"prepare": "husky install"
},
"dependencies": {
"@storybook/addon-a11y": "6.3.6",
"@storybook/addon-essentials": "6.3.6",
"@storybook/react": "6.3.6",
"@storybook/theming": "6.3.6",
"@ui5/webcomponents": "1.0.0-rc.15",
"@ui5/webcomponents-fiori": "1.0.0-rc.15",
"@ui5/webcomponents-icons": "1.0.0-rc.15",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-syntax-highlighter": "^15.2.1",
"tocbot": "^4.12.0"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@babel/runtime": "7.8.4",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^13.0.0",
"@semantic-release/github": "^7.2.3",
"@storybook/storybook-deployer": "2.8.10",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^27.0.0",
"@types/node": "^16.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@ui5/webcomponents-tools": "1.0.0-rc.15",
"chalk": "^4.0.0",
"dedent": "^0.7.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"glob": "^7.1.6",
"handlebars": "^4.7.7",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.3",
"jest-canvas-mock": "^2.2.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"micromatch": "^4.0.2",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"rimraf": "^3.0.1",
"rollup": "^2.23.0",
"turndown": "^7.0.0",
"typescript": "4.3.5"
},
"resolutions": {
"@types/react": "17.0.19",
"react": "17.0.2",
"react-dom": "17.0.2",
"trim": "0.0.3",
"browserslist": "4.16.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mdx}": [
"prettier -config ./prettier.config.cjs --write"
]
},
"type": "module",
"browserslist": {
"production": [
"> 0.2%",
"not dead",
"not op_mini all",
"not IE 11",
"not Edge <= 18",
"not ios_saf < 12"
],
"development": [
"last 1 chrome version",
"last 1 edge version",
"last 1 safari version",
"last 1 firefox version"
]
}
}