-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.75 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.75 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@fortawesome/react-fontawesome": "^0.1.15",
"@reduxjs/toolkit": "^1.6.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@wojtekmaj/react-timerange-picker": "^3.4.0",
"axios": "^0.21.4",
"cors": "^2.8.5",
"framer-motion": "^4.1.17",
"jest-html-reporter": "^3.4.1",
"react": "^17.0.2",
"react-calendar": "^3.4.0",
"react-chatbot-kit": "^2.0.1",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-leaflet": "^3.2.1",
"react-redux": "^7.2.5",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-simple-star-rating": "^3.0.0",
"react-test-renderer": "^17.0.2",
"react-widgets": "^5.4.0",
"styled-components": "^5.3.0",
"validator": "^13.6.0",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"cy:open": "cypress open",
"dev": "start-test 3000 cy:open",
"eject": "react-scripts eject",
"test:CI": "set CI=true &&react-scripts test --env=jsdom --testResultsProcessor=./node_modules/jest-html-reporter"
},
"nyc": {
"exclude": [
"src/components/SideNav/SideNav.js"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/index.js",
"<rootDir>/src/reportWebVitals.js",
"<rootDir>/src/ColorModeSwitcher.js",
"<rootDir>/src/components/Chatbot-Healthcare/",
"<rootDir>/src/components/Chatbot-Telecommunication/",
"<rootDir>/src/components/Chatbot-Transport/",
"<rootDir>/src/components/Slider/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@cypress/code-coverage": "^3.9.11",
"@cypress/instrument-cra": "^1.4.0",
"@testing-library/cypress": "^8.0.1",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"cypress": "^8.6.0",
"istanbul-lib-coverage": "^3.2.0",
"nyc": "^15.1.0",
"start-server-and-test": "^1.14.0"
}
}