-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 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": "dl-react-redux-firebase-todo-app",
"description": "A todo app made with react, redux and firebase.",
"license": "MIT",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/danilucaci/dl-react-redux-firebase-todo-app.git"
},
"private": true,
"author": "Dani Lucaci <[email protected]>",
"dependencies": {
"@juggle/resize-observer": "^3.0.2",
"@material-ui/core": "^4.9.1",
"@reach/menu-button": "^0.7.0",
"algoliasearch": "^4.0.1",
"body-scroll-lock": "^2.6.4",
"classnames": "^2.2.6",
"date-fns": "^2.9.0",
"dotenv": "^8.2.0",
"downshift": "^4.0.8",
"firebase": "^7.8.0",
"firebase-admin": "^8.9.2",
"firebase-functions": "^3.3.0",
"firebase-tools": "^7.12.1",
"focus-visible": "^5.0.2",
"formik": "^2.1.3",
"javascript-time-ago": "^2.0.6",
"js-cookie": "^2.2.1",
"logger": "0.0.1",
"node-sass": "npm:sass@^1.23.0",
"notistack": "^0.9.7",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-day-picker": "^7.4.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-input-mask": "^3.0.0-alpha.0",
"react-instantsearch-dom": "^6.3.0",
"react-modal": "^3.11.1",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"reselect-tools": "0.0.7",
"uuid": "^3.4.0",
"yup": "^0.28.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:cov": "react-scripts test --coverage",
"eject": "react-scripts eject",
"deploy": "npm run build && firebase deploy",
"fdo": "firebase deploy --only",
"fso": "firebase serve --only",
"fesf": "firebase emulators:start --only functions,firestore"
},
"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": {
"@firebase/testing": "^0.16.7",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^8.1.0",
"@types/algoliasearch": "^3.34.10"
}
}