-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.29 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "frontend",
"version": "0.1.0",
"author": "Steven Sacks",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm version patch",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"upd": "ncu -u -x sass-lint-auto-fix && yarn && yarn start",
"test": "react-scripts test --env=jsdom",
"test-cov": "yarn test --coverage --watch",
"test-cov-view": "browser-sync start --server --port 5150 --files 'coverage/lcov-report/index.html' --startPath 'coverage/lcov-report'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix --max-warnings=0",
"prettier --write",
"git add"
],
"src/**/*.json": [
"eslint --fix",
"prettier --write",
"git add"
],
"src/**/*.scss": [
"sass-lint-auto-fix",
"sass-lint -v",
"git add"
]
},
"jest": {
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js",
"!src/amplify.js"
]
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@sentry/browser": "^5.8.0",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"aws-amplify": "^1.2.4",
"aws-amplify-react": "^2.5.4",
"aws-appsync": "^2.0.2",
"aws-appsync-auth-link": "^1.0.1",
"aws-appsync-subscription-link": "^1.0.1",
"core-js": "^3.4.1",
"date-fns": "^2.7.0",
"date-fns-timezone": "^0.1.4",
"deep-object-diff": "^1.1.0",
"element-scroll-polyfill": "^1.0.1",
"eslint-plugin-graphql": "^3.1.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"local-storage": "^2.0.0",
"lodash": "^4.17.15",
"lz-string": "^1.4.4",
"node-sass": "^4.13.0",
"platform": "^1.3.5",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"regenerator-runtime": "^0.13.3",
"source-map-explorer": "^2.1.0",
"spark-md5": "^3.0.0",
"uuid": "^3.3.3",
"validator": "^12.0.0"
},
"devDependencies": {
"@apollo/react-testing": "^3.1.3",
"@testing-library/cypress": "^5.0.2",
"@testing-library/jest-dom": "^4.2.3",
"@testing-library/react": "^9.3.2",
"@testing-library/react-hooks": "^3.2.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-cypress": "^2.7.0",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-jest-dom": "^1.1.3",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react-hooks": "^2.2.0",
"husky": "^3.0.9",
"jest-localstorage-mock": "^2.4.0",
"jest-mock-console": "^1.0.0",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1",
"react-test-renderer": "^16.11.0",
"sass-lint": "^1.13.1",
"sass-lint-auto-fix": "=0.17.0"
},
"resolutions": {
"apollo-client": "2.6.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}