-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.72 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
{
"name": "app",
"version": "0.3.1",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"prepare": "husky install",
"test:coverage": "craco test --coverage --watchAll",
"test:ci": "react-scripts test --coverageReporters=lcov --testResultsProcessor jest-sonar-reporter --passWithNoTests --debug --coverage --no-cache --watchAll=false",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"dex:build": "docker build src/pages/Login -t dex-auth-local",
"dex:run": "docker run -it -p 5556:5556 dex-auth-local:latest",
"eslint:lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"craco test --watchAll=false --findRelatedTests"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"antd": "4.6.4",
"axios": "^0.25.0",
"react": "^16.13.1",
"react-contextmenu": "^2.14.0",
"react-copy-to-clipboard": "^5.0.1",
"react-csv": "^2.0.3",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-flow-renderer": "^8.1.2",
"react-google-button": "^0.7.1",
"react-google-picker": "^0.1.0",
"react-grid-layout": "^1.1.1",
"react-image-lightbox": "^5.1.1",
"react-redux": "^7.2.1",
"react-resize-detector": "^5.2.0",
"react-resize-panel": "^0.3.5",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@craco/craco": "^5.8.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"axios-mock-adapter": "^1.19.0",
"babel-eslint": "10.1.0",
"craco-less": "^1.17.0",
"customize-cra": "^1.0.0",
"eslint": "7.26.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsdoc": "^30.5.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-react-redux": "^3.3.0",
"eslint-plugin-sonarjs": "^0.10.0",
"husky": "^7.0.2",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^11.1.2",
"nock": "^13.0.4",
"react-styleguidist": "^11.1.4",
"redux-mock-store": "^1.5.4"
}
}