-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
123 lines (123 loc) · 3.05 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": "goal-tracker",
"version": "7.1.0",
"private": true,
"description": "Demo app used in Delicious Insights’ React PWA training course",
"author": "Christophe Porteneuve <[email protected]>",
"license": "No-License (see LICENSE file)",
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"start:poll": "cross-env CHOKIDAR_USEPOLLING=true npm start",
"test": "react-scripts test"
},
"engines": {
"node": ">= 14",
"npm": ">= 6"
},
"prettier": {
"jsxSingleQuote": true,
"semi": false,
"singleQuote": true
},
"deliciousImportSort": {
"customGroups": "@mui",
"mainOrder": [
"absolute",
"relative",
"bare"
]
},
"importSort": {
".js": {
"style": "delicious"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:import/errors",
"plugin:import/warnings"
],
"rules": {
"react/prop-types": "warn"
},
"overrides": [
{
"files": [
"src/**/*.stories.js"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.10",
"@redux-offline/redux-offline": "^2.6.0",
"@reduxjs/toolkit": "^1.9.3",
"airbnb-prop-types": "^2.16.0",
"bson-objectid": "^2.0.4",
"date-fns": "^2.28.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.1",
"react-scripts": "^5.0.0",
"reduce-reducers": "^1.0.4",
"redux": "^4.2.1",
"web-vitals": "^3.1.1",
"workbox-background-sync": "^6.5.0",
"workbox-broadcast-update": "^6.5.0",
"workbox-cacheable-response": "^6.5.0",
"workbox-core": "^6.5.0",
"workbox-expiration": "^6.5.0",
"workbox-google-analytics": "^6.5.0",
"workbox-navigation-preload": "^6.5.0",
"workbox-precaching": "^6.5.0",
"workbox-range-requests": "^6.5.0",
"workbox-routing": "^6.5.0",
"workbox-strategies": "^6.5.0",
"workbox-streams": "^6.5.0"
},
"devDependencies": {
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"body-parser": "^1.20.2",
"chalk-template": "^0.5.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"express": "^4.17.3",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-style-delicious": "^1.0.2",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"redux-devtools-extension": "^2.13.9"
}
}