-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.61 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
{
"name": "webpack-v5-react-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config webpack/development.js",
"build": "webpack -c webpack/production.js",
"start": "node static-server",
"test": "jest --watchAll=false --forceExit --detectOpenHandles",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/dom": "^8.11.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/chroma-js": "^2.1.4",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/jest": "^27.4.0",
"@types/react": "^18.0.7",
"@types/react-dom": "^17.0.11",
"@types/react-highlight-words": "^0.16.4",
"@types/react-redux": "^7.1.22",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.5",
"@types/redux-logger": "^3.0.9",
"@types/redux-mock-store": "^1.0.3",
"@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-loader": "^8.2.3",
"babel-plugin-transform-object-hasown": "^1.1.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"dotenv-webpack": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-location-mock": "^1.0.9",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "2.4.5",
"msw": "^0.36.7",
"prettier": "^2.5.1",
"react-select-event": "^5.3.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"sass": "^1.48.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@reduxjs/toolkit": "^1.7.1",
"@stripe/react-stripe-js": "^1.8.0",
"@stripe/stripe-js": "^1.29.0",
"axios": "^0.24.0",
"chroma-js": "^2.4.2",
"d3-scale-chromatic": "^3.0.0",
"date-fns": "^2.29.1",
"fastify": "^3.25.3",
"fastify-static": "^4.5.0",
"formik": "^2.2.9",
"immer": "^9.0.15",
"normalizr": "^3.6.1",
"react": "^17.0.2",
"react-content-loader": "^6.1.0",
"react-dom": "^17.0.2",
"react-highlight-words": "^0.18.0",
"react-icons": "^4.3.1",
"react-range": "^1.8.12",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-select": "^5.2.2",
"react-toastify": "^9.0.7",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"react-window-infinite-loader": "^1.0.7",
"recharts": "^2.1.15",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.3",
"yup": "^0.32.11"
}
}