-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.48 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.48 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
{
"name": "@polymathnetwork/ui",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=8.9"
},
"main": "./build/main.js",
"repository": {
"type": "git",
"url": "https://github.com/PolymathNetwork/polymath-apps/tree/develop/packages/polymath-ui"
},
"scripts": {
"start": "docz dev",
"build": "echo \"Skipping Polymath-ui build.\"",
"build:website": "docz build",
"test": "jest --env=jsdom",
"typecheck": "flow --show-all-branches",
"analyze": "source-map-explorer build/main.*"
},
"dependencies": {
"@babel/runtime": "7.0.0",
"@polymathnetwork/js": "0.0.0",
"@sentry/browser": "^4.3.2",
"axios": "^0.18.0",
"bignumber.js": "6.0.0",
"can-use-dom": "^0.1.0",
"carbon-components": "9.13.0",
"carbon-components-react": "6.29.2",
"carbon-icons": "7.0.7",
"eth-sig-util": "^1.4.2",
"formik": "^1.3.1",
"lodash": "4.17.17",
"moment-timezone": "^0.5.23",
"numeral": "^2.0.6",
"react": "16.8.2",
"react-document-title": "2.0.3",
"react-dom": "16.8.2",
"react-modal": "^3.6.1",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-select": "^2.1.0",
"react-tooltip": "^3.9.0",
"react-transition-group": "^2.2.1",
"redux": "^4.0.1",
"redux-form": "^8.1.0",
"styled-components": "4.1.3",
"styled-system": "^3.1.11",
"typeface-overpass": "^0.0.54"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "8.0.4",
"babel-preset-react-app": "^5.0.0",
"css-loader": "^1.0.0",
"docz": "^0.11.2",
"docz-plugin-css": "^0.11.0",
"docz-theme-default": "^0.11.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"file-loader": "2.0.0",
"jest": "^24.1.0",
"jest-enzyme": "^6.0.4",
"jest-junit": "^5.2.0",
"jest-styled-components": "^6.3.1",
"node-sass": "^4.0.0",
"react-dev-utils": "^6.0.4",
"react-test-renderer": "^16.5.2",
"react-testing-library": "^5.2.3",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.8.3"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.{js,jsx,mjs}"
],
"roots": [
"<rootDir>/src"
],
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./src/specsInit.js",
"testURL": "http://localhost",
"transform": {
"\\.(css|scss)$": "<rootDir>/config/jest/cssTransform.js",
"^.+\\.jsx?$": "<rootDir>/../../config/babelJestWrapper",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/fileTransform.js"
},
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"lcov",
"cobertura",
"text"
],
"reporters": [
"default",
"jest-junit"
],
"coverageDirectory": "<rootDir>/reports"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}