This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.71 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
{
"name": "@greenbone/ui-components",
"version": "2021.07.01",
"description": "Greenbone Frontend Component Library",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/types/index.d.ts",
"repository": "https://github.com/greenbone/ui-components",
"scripts": {
"test": "jest --watch",
"test-ci": "jest --ci --coverage --reporters=default --reporters=jest-junit",
"start": "web-dev-server --node-resolve --watch --open",
"start:watch": "tsc --project tsconfig.demo.json --watch --preserveWatchOutput & web-dev-server --open demo/ --node-resolve --watch",
"build": "rollup -c",
"build-storybook": "build-storybook -c .storybook -o storybook",
"storybook": "start-storybook -p 7000",
"create-types": "tsc",
"lint": "eslint --max-warnings 0 src",
"lint-fix": "eslint --fix",
"generate": "node ./util/create-component"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"styled-components": "^5"
},
"optionalDependencies": {
"fsevents": "*"
},
"dependencies": {
"@material-ui/core": "^4",
"bootstrap": "^5",
"reactstrap": "^9"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"@babel/core": "^7.20.5",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@storybook/react": "^6.4.22",
"@svgr/rollup": "^5.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/styled-components": "^5.1.26",
"babel-loader": "^9.1.0",
"babel-preset-react-app": "^10.0.0",
"html-webpack-plugin": "5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-junit": "^15.0.0",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"simple-icons": "^7.21.0",
"styled-components": "^5.3.6",
"ts-jest": "^27.1.4",
"typescript": "^4.9.3",
"react": "^17",
"react-dom": "^17",
"babel-eslint": "^10.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser" : "^4.33.0"
}
}