-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
118 lines (118 loc) · 3.85 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
117
118
{
"name": "@netdata/netdata-ui",
"version": "4.7.10",
"description": "netdata UI kit",
"main": "dist/index.js",
"module": "dist/es6/index.js",
"jsnext:main": "dist/es6/index.js",
"repository": {
"type": "git",
"url": "[email protected]: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"
},
"keywords": [
"netdata",
"frontend",
"ui-kit"
],
"resolutions": {
"jackspeak": "2.1.1"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@elastic/react-search-ui": "^1.21.5",
"@elastic/search-ui-site-search-connector": "^1.21.5",
"@prismicio/client": "7.6.0",
"@storybook/test": "^8.1.11",
"@styled-system/css": "^5.1.5",
"@tanstack/react-table": "^8.19.2",
"@tanstack/react-virtual": "3.8.1",
"axios": "^1.7.2",
"polished": "^4.3.1",
"react-portal": "^4.2.2",
"react-select": "^5.8.0",
"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.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-modules-umd": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/react-webpack5": "^8.1.11",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"babel-loader": "^9.1.3",
"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": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"html-loader": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"install-peers-cli": "^2.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.1.1",
"jsdom": "24.1.0",
"lodash": "^4.17.21",
"markdown-loader": "8.0.0",
"prettier": "^3.3.2",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"sass-loader": "^14.2.1",
"storybook": "^8.1.11",
"styled-components": "^5.3.9",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}