-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.75 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
{
"name": "app",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev -p 4200",
"prebuild": "jest --bail -u",
"build": "next build",
"start": "next start",
"cypress": "cypress run",
"test": "jest",
"test:watch": "jest --watch",
"lint": "next lint",
"lint:fix": "next lint --fix"
},
"private": true,
"dependencies": {
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@mui/material": "5.11.9",
"@mui/styles": "5.11.9",
"@mui/utils": "5.11.9",
"@next/bundle-analyzer": "12.1.5",
"@redux-devtools/extension": "3.2.2",
"axios": "0.26.1",
"classnames": "2.3.1",
"http-proxy-middleware": "2.0.6",
"i18next-http-backend": "1.4.1",
"immutability-helper": "3.1.1",
"jose": "^4.13.1",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "3.1.2",
"localforage": "1.10.0",
"lodash": "^4.17.21",
"lodash.debounce": "4.0.8",
"luxon": "2.3.2",
"match-sorter": "6.3.1",
"next": "11.1.4",
"next-i18next": "11.3.0",
"next-images": "1.8.4",
"react": "17.0.2",
"react-custom-scrollbars": "4.2.1",
"react-dom": "17.0.2",
"react-input-verification-code": "1.0.1",
"react-lottie": "1.2.3",
"react-redux": "8.0.1",
"react-refresh": "0.14.0",
"react-tabs": "3.2.2",
"redux": "4.1.2",
"redux-thunk": "2.4.1",
"styled-components": "5.3.5",
"svg-react-loader": "0.4.6",
"swr": "1.3.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@storybook/addon-actions": "6.5.14",
"@storybook/addon-essentials": "6.5.14",
"@storybook/addon-interactions": "6.5.14",
"@storybook/addon-links": "6.5.14",
"@storybook/builder-webpack5": "6.5.14",
"@storybook/manager-webpack5": "6.5.14",
"@storybook/react": "6.5.14",
"@storybook/testing-library": "0.0.13",
"@svgr/webpack": "6.5.1",
"@testing-library/dom": "8.19.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "14.4.3",
"@types/jest": "25.1.4",
"@types/luxon": "2.3.2",
"@types/react": "17.0.6",
"@types/react-dom": "17.0.5",
"@types/react-redux": "7.1.24",
"@types/react-test-renderer": "17.0.2",
"@types/styled-components": "5.1.25",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"autoprefixer": "10.4.7",
"babel-jest": "25.1.0",
"babel-loader": "8.2.5",
"babel-plugin-styled-components": "2.0.7",
"babel-plugin-transform-imports": "2.0.0",
"cypress": "12.6.0",
"eslint": "7.7.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-next": "^13.2.4",
"eslint-config-node": "4.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "28.1.0",
"jest-canvas-mock": "2.4.0",
"jest-environment-jsdom": "28.0.2",
"jest-styled-components": "7.1.1",
"jest-transformer-svg": "2.0.0",
"postcss": "8.4.21",
"postcss-loader": "7.0.2",
"prettier": "2.6.2",
"react-app-polyfill": "3.0.0",
"react-test-renderer": "17.0.2",
"storybook-addon-turbo-build": "1.1.0",
"stylelint-config-standard": "21.0.0",
"ts-jest": "28.0.1",
"ts-node": "10.7.0",
"tsconfig-paths-webpack-plugin": "4.0.0",
"typescript": "4.3.2",
"url-loader": "4.1.1",
"webpack": "5.75.0"
}
}