-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "@examples-query-react/optimistic-update",
"private": true,
"version": "1.0.0",
"description": "concepts-optimistic-updates",
"keywords": [],
"main": "./src/index.tsx",
"dependencies": {
"@chakra-ui/react": "1.0.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mswjs/data": "^0.3.0",
"@reduxjs/toolkit": "^1.6.0-rc.1",
"framer-motion": "^2.9.5",
"msw": "0.28.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "3.11.0",
"react-redux": "^7.2.4",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-redux": "7.1.9",
"@types/react-router-dom": "5.1.6",
"typescript": "~4.2.4",
"whatwg-fetch": "^3.4.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"prebuild": "rm -rf dist/"
},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"react/react-in-jsx-scope": "off"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"msw": {
"workerDirectory": "public"
}
}