-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.98 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
{
"name": "webapp",
"version": "0.1.0",
"private": true,
"engines": {
"node": "10.15.1",
"npm": "6.4.1"
},
"dependencies": {
"@auth0/auth0-spa-js": "^1.9.0",
"@babel/runtime": "^7.10.2",
"@date-io/date-fns": "^1.3.13",
"@gouch/to-title-case": "^2.2.1",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.49",
"@material-ui/pickers": "^3.2.10",
"airbnb-prop-types": "^2.15.0",
"axios": "^0.21.1",
"babel-plugin-rewire": "^1.2.0",
"cypress": "^3.8.3",
"date-fns": "^2.14.0",
"fetch-mock": "^7.7.3",
"html2canvas": "^1.0.0-rc.5",
"immutability-helper": "^3.1.1",
"isomorphic-fetch": "^3.0.0",
"jspdf": ">=2.3.1",
"lodash.get": "^4.4.2",
"material-ui": "^0.20.2",
"material-ui-phone-number": "2.0.1",
"moment": "^2.29.1",
"npm-install-peers": "^1.2.1",
"pdfmake": "^0.1.65",
"react": "^16.13.1",
"react-beautiful-dnd": "^12.2.0",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"react-mailchimp-form": "^1.0.2",
"react-material-ui-carousel": "^2.2.4",
"react-multi-carousel": "^2.6.2",
"react-places-autocomplete": "^7.2.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-select": "^2.4.4",
"react-to-print": "^2.9.0",
"react-window": "^1.8.5",
"redux": "^4.0.5",
"redux-fetch-wrapper": "^1.0.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"redux-starter-kit": "^0.5.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint .",
"format": "eslint --fix .",
"clear-jest": "jest --clearCache"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:cypress/recommended"
],
"plugins": [
"chai-friendly"
],
"rules": {
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": 2
}
},
"eslintIgnore": [
"build/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix",
"git add"
],
"*.+(json|css|md)": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"node-fetch": "^2.6.1",
"prettier": "^1.19.1",
"react-app-rewire-yaml": "^1.1.0",
"react-app-rewired": "^2.1.6"
}
}