-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.57 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
{
"name": "workouttracker",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@chakra-ui/core": "^0.5.1",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@fullcalendar/core": "^4.3.1",
"@fullcalendar/daygrid": "^4.3.0",
"@fullcalendar/interaction": "^4.3.0",
"@fullcalendar/react": "^4.3.0",
"@fullcalendar/timegrid": "^4.3.0",
"apollo": "^2.21.2",
"apollo-boost": "^0.4.7",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-context": "^1.0.19",
"apollo-link-ws": "^1.0.19",
"apollo-upload-client": "^12.1.0",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.19",
"formik": "^2.0.8",
"graphql": "^14.5.8",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-apollo": "^3.1.3",
"react-calendar": "^2.19.2",
"react-countdown-circle-timer": "^1.0.5",
"react-dom": "^16.12.0",
"react-facebook-login": "^4.1.1",
"react-ga": "^2.7.0",
"react-google-login": "^5.0.7",
"react-icons": "^3.8.0",
"react-multi-carousel": "^2.5.0",
"react-player": "^1.14.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.0",
"react-share": "^4.0.1",
"recharts": "^2.0.0-beta.1",
"styled-components": "^4.4.1",
"subscriptions-transport-ws": "^0.9.16",
"yup": "^0.28.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --update-snapshot",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/eslint src",
"format": "prettier --write \"./src/**/*.{js,jsx}\"",
"coverage": "react-scripts test --update-snapshot --env=jsdom --watchAll=false --coverage",
"coveralls": "npm run coverage && cat coverage/lcov.info | coveralls"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"eslintConfig": {
"extends": [
"react-app",
"eslint-config-prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"coveralls": "^3.0.9",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1"
}
}