-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.08 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
{
"name": "datafetch",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.js",
"engines": {
"node": "14.17.3"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^2.9.10",
"@reduxjs/toolkit": "^1.9.0",
"@tabler/icons": "^1.115.0",
"@tabler/icons-react": "^2.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/react-table": "^7.7.14",
"classnames": "2.3.2",
"concurrently": "^7.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"jest": "26.6.0",
"json-server": "^0.17.1",
"json-server-auth": "^2.1.0",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.39.3",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.5",
"react-scripts": "^5.0.1",
"react-table": "^7.8.0",
"react-test-renderer": "17.0.2",
"recharts": "2.1.16",
"redux": "^4.2.0",
"redux-thunk": "^2.4.2",
"resize-observer-polyfill": "^1.5.1",
"sass-loader": "^13.2.0",
"scss": "0.2.4",
"socket.io-client": "^4.6.1",
"typescript": "^4.8.4",
"wait-on": "^6.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/runtime": "7.13.8",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"babel-plugin-named-exports-order": "^0.0.2",
"cypress": "^11.2.0",
"jest-fetch-mock": "^3.0.3",
"msw": "^0.49.2",
"nodemon": "^2.0.20",
"prop-types": "^15.8.1",
"redux-mock-store": "^1.5.4",
"webpack": "^5.75.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "yarn test --coverage --watchAll",
"server": "json-server --watch db.json --port 8000",
"serverb": "json-server --watch db.json -m ./node_modules/json-server-auth --port 3001 && nodemon server",
"dev": "concurrently \"npm run serverb\" \"npm run start\"",
"web": "node server.js",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc.json",
"cypress:open": "cypress open",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}