-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.58 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
{
"name": "frontend",
"version": "0.1.0",
"main": "./build/index.js",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.8.1",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"babel-plugin-module-resolver": "^4.1.0",
"formik": "^2.2.6",
"framer-motion": "^3.2.2-rc.1",
"material-ui-dropzone": "^3.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intersection-observer": "^8.31.0",
"react-multi-carousel": "^2.6.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-router-last-location": "^2.0.1",
"react-scripts": "4.0.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"timeago-react": "^3.0.1",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4",
"yup": "^0.32.8",
"yup-phone": "^1.2.19"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"cypress": "cypress open"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cypress/react": "^4.16.4",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/node-logger": "^6.1.15",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.15",
"@testing-library/react-hooks": "^5.1.0",
"@types/react-phone-number-input": "^3.0.6",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux-mock-store": "^1.0.2",
"@types/yup": "^0.29.11",
"babel-plugin-root-import": "^6.6.0",
"cypress": "^6.6.0",
"msw": "^0.27.0",
"react-app-rewired": "^2.1.8",
"redux-mock-store": "^1.5.4"
},
"jest": {
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"moduleDirectories": [
"node_modules",
"src"
],
"roots": [
"<rootDir>/src"
]
}
}