-
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.52 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.52 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/new-issuer",
"version": "0.0.0",
"main": "build/dist/index.js",
"typings": "build/dist/index.d.ts",
"license": "MIT",
"private": true,
"engines": {
"node": ">=8.9"
},
"scripts": {
"start": "concurrently --kill-others -n devServer,types \"webpack-dev-server\" \"ttsc -b ../ --watch\"",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testMatch": [
"**/__tests__/**/*.(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"build"
],
"transform": {
"^.+\\.tsx?$": "../../config/babelJestWrapper.js",
"^.+\\.css$": "<rootDir>/config/transformStyles.js",
"^(?!.*\\.(js|ts|tsx|jsx|mjs|css|json|graphql)$)": "<rootDir>/config/transformFiles.js"
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"setupFilesAfterEnv": [
"<rootDir>/src/testUtils/setupTests.ts"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx,mjs}"
],
"coverageReporters": [
"lcov",
"cobertura",
"text"
],
"coverageDirectory": "<rootDir>/reports",
"reporters": [
"jest-junit",
"default"
]
},
"resolutions": {
"@types/react": "16.8.3",
"@types/react-dom": "16.8.2"
},
"dependencies": {
"@babel/runtime": "7.0.0",
"@polymathnetwork/new-ui": "0.0.0",
"@polymathnetwork/sdk": "0.0.0",
"bignumber.js": "8.0.1",
"lodash": "^4.17.11",
"luxon": "1.10.0",
"numeral": "^2.0.6",
"react": "16.8.2",
"react-dom": "16.8.2",
"react-redux": "^6.0.1",
"redux-little-router": "^15.1.2",
"redux-saga": "^0.16.2",
"reselect": "^4.0.0",
"typesafe-actions": "^2.0.4",
"web3": "4.0.1",
"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/polyfill": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "7.0.0",
"@svgr/webpack": "^4.1.0",
"@types/dotenv": "^6.1.0",
"@types/lodash": "^4.14.119",
"@types/luxon": "^1.10.2",
"@types/node": "^10.12.12",
"@types/numeral": "^0.0.25",
"@types/react": "16.8.3",
"@types/react-dom": "16.8.2",
"@types/react-redux": "^6.0.10",
"@types/redux-mock-store": "^1.0.0",
"@types/styled-components": "^4.1.8",
"@types/yup": "^0.26.9",
"autoprefixer": "^9.4.4",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "8.0.2",
"babel-plugin-named-asset-import": "^0.3.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"concurrently": "^4.1.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"dotenv": "^6.2.0",
"dotenv-safe": "^6.1.0",
"fork-ts-checker-webpack-plugin": "^0.5.0",
"html-webpack-plugin": "^3.2.0",
"interpolate-html-plugin": "^3.0.0",
"jest": "^24.1.0",
"jest-dom": "^3.0.0",
"lodash": "4.17.14",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"react-dev-utils": "^6.1.1",
"react-testing-library": "^5.3.2",
"redux-mock-store": "^1.5.3",
"reflect-metadata": "^0.1.12",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.11.0",
"typescript": "3.2.4",
"web3-fake-provider": "^0.1.0",
"webpack": "^4.26.1",
"webpack-dev-server": "^3.1.10"
}
}