This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
118 lines (118 loc) · 3.3 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
{
"name": "spacesvm-js",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"serve": "vite preview",
"test": "DEBUG_PRINT_LIMIT=300000 yarn run jest --runInBand --coverage"
},
"sideEffects": false,
"dependencies": {
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"@metamask/onboarding": "1.0.1",
"@mui/material": "5.3.1",
"@mui/styles": "5.3.0",
"@react-hookz/web": "12.3.0",
"date-fns": "2.28.0",
"lodash": "4.17.21",
"notistack": "2.0.3",
"react": "17.0.2",
"react-device-detect": "2.1.2",
"react-dom": "17.0.2",
"react-emoji-render": "1.2.4",
"react-error-boundary": "3.1.4",
"react-icons": "4.3.1",
"react-lazy-load-image-component": "1.5.1",
"react-router-dom": "6.2.1"
},
"devDependencies": {
"@honkhonk/vite-plugin-svgr": "1.1.0",
"@testing-library/dom": "8.11.3",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/lodash": "4.14.178",
"@types/node": "17.0.12",
"@types/react-dom": "17.0.11",
"@types/react-lazy-load-image-component": "1.5.2",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"@vitejs/plugin-react": "1.1.4",
"babel-jest": "27.4.6",
"babel-preset-react-app": "10.0.1",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"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-plugin-simple-import-sort": "7.0.0",
"jest": "27.4.7",
"prettier": "2.5.1",
"rollup-plugin-summary": "1.3.0",
"rollup-plugin-visualizer": "5.5.4",
"typescript": "4.5.5",
"unplugin-auto-import": "0.5.11",
"vite": "2.7.13"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"setupFilesAfterEnv": [
"<rootDir>/__mocks__/jest.setup.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts",
"!src/main.tsx",
"!src/types/*.{js,jsx,ts,tsx}",
"!src/constants/*.{js,jsx,ts,tsx}",
"!src/theming/*.{js,jsx,ts,tsx}"
],
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"html",
"json-summary",
"text",
"lcov"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/__mocks__/cssMock.js",
"^.+\\.svg$": "<rootDir>/__mocks__/svgMock.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$",
"^.+\\.module\\.(css)$"
],
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/src/$1",
"^.+\\.module\\.(css)$": "identity-obj-proxy"
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"resetMocks": true
},
"babel": {
"env": {
"test": {
"presets": [
"react-app"
]
}
}
}
}