-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.43 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
{
"name": "tally-ai-fe",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material/layout-grid": "^4.0.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"aos": "2.3.4",
"axios": "^0.19.0",
"coverage": "^0.4.1",
"d3": "^5.15.0",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"feather-icons": "^4.28.0",
"fetch-mock": "^8.3.1",
"formik": "^2.1.4",
"keymirror": "^0.1.1",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-avatar": "^3.9.6",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.1",
"react-feather": "^2.0.8",
"react-google-login": "^5.1.20",
"react-images-upload": "^1.2.8",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-star-ratings": "^2.3.0",
"react-swipeable-views": "^0.13.8",
"react-test-renderer": "^16.12.0",
"recharts": "^2.0.0-beta.6",
"redux": "^4.0.4",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.3.0",
"yup": "^0.29.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"cypress": "cypress open",
"eject": "react-scripts eject",
"scss": "node-sass --watch scss -o css",
"cypress:coverage:run": "cypress run || true",
"start:coverage": "react-scripts -r @cypress/instrument-cra start",
"cypress:coverage": "start-server-and-test start:coverage http://localhost:3000 cypress:coverage:run || true"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cypress/code-coverage": "^3.8.1",
"@cypress/instrument-cra": "^1.1.1",
"cypress": "^4.9.0",
"jest": "^24.9.0",
"start-server-and-test": "^1.11.0"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/__tests__/**"
]
}
}