forked from fossology/FOSSologyUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.56 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
{
"name": "fossologyui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/lab": "^4.0.0-alpha.61",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"array-to-tree": "^3.3.2",
"bootstrap": "4.6.0",
"jquery": "^3.6.0",
"js-cookie": "^2.2.1",
"prop-types": "^15.8.1",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-bootstrap-icons": "^1.8.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-table": "^7.8.0",
"react-virtualized": "^9.22.3",
"react-virtualized-tree": "^3.4.1",
"styled-components": "^5.3.5",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/ --fix",
"lint:check": "eslint src/",
"fix:all": "yarn lint && yarn format",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"gencopy": "node scripts/copyrightsScript.js && prettier --write ./scripts/copyrights.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"babel-loader": "8.1.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.5",
"@storybook/addon-essentials": "^6.5.5",
"@storybook/addon-links": "^6.5.5",
"@storybook/node-logger": "^6.5.5",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.5.5",
"csv-parser": "^3.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jest-fetch-mock": "3.0.3",
"prettier": "^2.6.2"
},
"packageManager": "[email protected]"
}