-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.67 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.67 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@polymathnetwork/new-ui",
"version": "0.0.0",
"main": "build/dist/index.js",
"typings": "build/dist/index.d.ts",
"private": true,
"scripts": {
"start": "docz dev",
"build:website": "docz build",
"test": "jest --env=jsdom"
},
"resolutions": {
"react-hot-loader": "4.7.1",
"@types/react": "16.8.3",
"@types/react-dom": "16.8.2",
"docz-core": "^0.13.7",
"ansi-styles": "^3.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@polymathnetwork/new-shared": "0.0.0",
"@polymathnetwork/sdk": "0.0.0",
"@sentry/browser": "^4.4.1",
"bignumber.js": "^8.0.1",
"flatpickr": "^4.5.2",
"formik": "^1.5.1",
"lodash": "4.17.17",
"polished": "^2.3.1",
"popper.js": "^1.14.7",
"react": "16.8.2",
"react-dom": "16.8.2",
"react-dropzone": "^9.0.0",
"react-modal": "^3.6.1",
"react-router-dom": "^4.3.1",
"react-select": "2.4.1",
"react-table": "7.0.0-alpha.0",
"react-tooltip": "^3.9.0",
"redux-little-router": "^15.1.2",
"scrollbarwidth": "^0.1.3",
"simplebar-react": "^0.1.4",
"styled-components": "4.1.3",
"styled-system": "^3.2.0",
"tooltip.js": "^1.3.1",
"typeface-overpass": "^0.0.54",
"yup": "^0.26.10"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-syntax-async-generators": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.0.0",
"@emotion/cache": "^10.0.0",
"@emotion/core": "^10.0.6",
"@svgr/webpack": "^4.1.0",
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.119",
"@types/moment-timezone": "^0.5.10",
"@types/node": "^10.12.12",
"@types/react": "16.8.3",
"@types/react-dom": "^16.8.2",
"@types/react-modal": "^3.8.0",
"@types/react-router-dom": "^4.3.1",
"@types/react-select": "2.0.11",
"@types/react-tooltip": "^3.9.0",
"@types/redux-little-router": "^15.1.0",
"@types/styled-components": "4.1.4",
"@types/yup": "^0.26.9",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "8.0.2",
"babel-plugin-named-asset-import": "^0.3.0",
"docz": "^0.13.7",
"docz-plugin-css": "^0.11.0",
"docz-theme-default": "^0.13.7",
"emotion-theming": "^10.0.6",
"jest": "^24.1.0",
"jest-dom": "^3.1.1",
"jest-styled-components": "^6.3.1",
"namor": "^1.1.1",
"react-hot-loader": "^4.7.1",
"react-redux": "^6.0.1",
"react-testing-library": "^5.8.0",
"redux-little-router": "^15.1.2",
"typescript": "3.2.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.(ts|tsx|js)"
],
"testURL": "http://localhost",
"testPathIgnorePatterns": [
"build"
],
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/../../config/babelJestWrapper",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/fileTransform.js"
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1",
"\\.(css|scss)$": "<rootDir>/config/cssTransform.js"
},
"setupFilesAfterEnv": [
"<rootDir>/src/testUtils/setupTests.ts"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx,mjs}"
],
"coverageReporters": [
"lcov",
"cobertura",
"text"
],
"coverageDirectory": "<rootDir>/reports",
"reporters": [
"jest-junit",
"default"
]
}
}