generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.1 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.1 KB
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
{
"name": "@sap-ux/ui-components",
"version": "1.27.1",
"license": "Apache-2.0",
"description": "SAP UI Components Library",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
"directory": "packages/ui-components"
},
"bugs": {
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aui-components"
},
"private": false,
"files": [
"dist",
"LICENSE",
"storybook"
],
"main": "dist/index.js",
"scripts": {
"clean": "rimraf --glob dist coverage *.tsbuildinfo storybook",
"build": "npm-run-all -l -p build:extension build:copyfiles build:storybook",
"build:extension": "tsc --build --pretty",
"build:copyfiles": "copyfiles --up 1 \"./src/**/*.scss\" ./dist/",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format:fix": "prettier --write --ignore-path ../../.prettierignore",
"format:fix:all": "prettier --write '**/*.{css,scss,html,js,json,ts,tsx,yaml,yml}' '!**/{out,dist,typings,node_modules}/**' '!**/*.{svg,png,xml}' --ignore-path ../../.prettierignore",
"storybook": "storybook dev",
"build:storybook": "storybook build -o ./storybook",
"test": "jest --ci --forceExit --colors --silent",
"test-u": "jest --ci --forceExit --colors --silent -u"
},
"dependencies": {
"@fluentui/react": "8.120.5",
"react-movable": "2.5.4",
"react-select": "5.8.0",
"react-virtualized": "9.22.5",
"sanitize-html": "2.12.1",
"uuid": "3.4.0"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"devDependencies": {
"@babel/core": "7.28.0",
"@babel/helper-define-map": "7.18.6",
"@babel/preset-env": "7.28.0",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.27.1",
"@storybook/react": "8.4.2",
"@storybook/react-webpack5": "8.4.2",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "12.1.5",
"@types/enzyme": "3.10.13",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/react": "16.14.55",
"@types/react-dom": "16.9.24",
"@types/react-virtualized": "9.21.29",
"@types/sanitize-html": "2.11.0",
"@types/uuid": "3.4.11",
"babel-jest": "30.2.0",
"babel-loader": "9.1.3",
"copyfiles": "2.4.1",
"css-loader": "6.8.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.7",
"eslint": "9.39.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-storybook": "0.6.15",
"jest-environment-jsdom": "29.7.0",
"jest-scss-transform": "1.0.4",
"npm-run-all2": "6.2.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"require-from-string": "2.0.2",
"sass": "1.66.1",
"sass-loader": "13.3.2",
"storybook": "8.6.15",
"storybook-addon-turbo-build": "2.0.1",
"style-loader": "3.3.3",
"ts-loader": "9.4.4"
}
}