-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.29 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_TLS_REJECT_UNAUTHORIZED='0' node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"test": "jest",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook",
"cy:open": "cypress open"
},
"dependencies": {
"@react-hook/window-size": "^3.0.7",
"@reduxjs/toolkit": "^1.5.0",
"axios": "^0.21.1",
"cookie": "^0.4.1",
"cookies": "^0.8.0",
"formik": "^2.2.6",
"framer-motion": "^4.0.3",
"next": "10.0.9 d",
"next-i18next": "^8.2.0",
"next-redux-wrapper": "^6.0.2",
"react": "17.0.1",
"react-cookie": "^4.0.3",
"react-dom": "17.0.1",
"react-intersection-observer": "^8.31.0",
"react-ionicons": "^4.2.0",
"react-loading-skeleton": "^2.2.0",
"react-redux": "^7.2.2",
"react-responsive-carousel": "^3.2.15",
"react-ripples": "^2.2.1",
"react-toastify": "^7.0.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/addons": "^6.1.21",
"@storybook/react": "^6.1.21",
"@storybook/theming": "^6.1.21",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.1",
"@types/cookies": "^0.7.6",
"@types/jest": "^26.0.22",
"@types/jest-image-snapshot": "^4.3.0",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.9",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"cypress": "^7.0.1",
"cypress-file-upload": "^5.0.6",
"cypress-plugin-snapshots": "^1.4.4",
"jest": "^26.6.3",
"jest-image-snapshot": "^4.4.0",
"jest-styled-components": "^7.0.3",
"postcss": "^8.2.8",
"react-i18next": "^11.8.13",
"react-test-renderer": "^17.0.2",
"storybook-addon-next-router": "^2.0.4",
"storybook-addon-styled-component-theme": "^2.0.0",
"ts-jest": "^26.5.4",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.2.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.(test|spec).(ts|tsx)"
],
"globals": {
"ts-jest": {
"babelConfig": true,
"tsConfig": "tsconfig.json"
}
},
"coveragePathIgnorePatterns": [
"node_modules/",
"stories/",
"tests/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/mocks.js",
"\\.(css|less)$": "<rootDir>/__mocks__/mocks.js"
},
"collectCoverage": true
}
}