-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.76 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.76 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
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
{
"name": "@netdata/netdata-ui",
"version": "5.4.3",
"description": "netdata UI kit",
"main": "dist/index.js",
"module": "dist/es6/index.js",
"jsnext:main": "dist/es6/index.js",
"repository": {
"type": "git",
"url": "git@github.com:netdata/netdata-ui.git"
},
"author": "Netdata",
"license": "GPL-3.0",
"private": false,
"files": [
"/dist"
],
"scripts": {
"testOut": "yarn test --env=jsdom --json --outputFile=.jest-test-results.json",
"build:cjs": "babel src --out-dir dist --copy-files --ignore **/*.stories.js",
"build:es6": "BABEL_ENV=es6 babel src --out-dir dist/es6 --copy-files --ignore **/*.stories.js",
"build:umd": "NODE_ENV=production webpack",
"build": "yarn build:umd && yarn build:cjs && yarn build:es6",
"clean": "rimraf lib dist es coverage",
"test": "jest --config ./jest/config.js",
"cp-cloud": "cp -R ./dist ../cloud-frontend/node_modules/@netdata/netdata-ui/",
"to-cloud": "yarn build:cjs && yarn build:es6 && yarn cp-cloud",
"cp-charts": "cp -R ./dist ../charts/node_modules/@netdata/netdata-ui/",
"to-charts": "yarn build && yarn cp-charts",
"prepublishOnly": "yarn clean && yarn build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write \"**/*.{js,mjs}\""
},
"keywords": [
"netdata",
"frontend",
"ui-kit"
],
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@elastic/react-search-ui": "^1.24.2",
"@elastic/search-ui-site-search-connector": "^1.24.2",
"@prismicio/client": "^7.21.6",
"@styled-system/css": "^5.1.5",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.18",
"axios": "^1.13.5",
"polished": "^4.3.1",
"react-portal": "^4.3.0",
"react-select": "^5.10.2",
"styled-system": "^5.1.5",
"throttle-debounce": "^5.0.2",
"use-context-selector": "^2.0.0"
},
"peerDependencies": {
"lodash": "*",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"styled-components": ">=5.3.9"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-modules-umd": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@storybook/addon-docs": "10.2.10",
"@storybook/addon-links": "10.2.10",
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
"@storybook/react-webpack5": "10.2.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"babel-loader": "^10.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-styled-components": "^2.1.4",
"clean-webpack-plugin": "^4.0.0",
"copyfiles": "^2.4.1",
"eslint": "^10.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-storybook": "10.2.10",
"globals": "^17.3.0",
"html-loader": "^5.1.0",
"identity-obj-proxy": "^3.0.0",
"install-peers-cli": "^2.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-styled-components": "^7.2.0",
"jsdom": "^28.1.0",
"lodash": "^4.17.23",
"markdown-loader": "^8.0.0",
"prettier": "^3.8.1",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"sass-loader": "^16.0.7",
"storybook": "10.2.10",
"styled-components": "^6.3.10",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1"
}
}