-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.47 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.47 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
{
"name": "@polymathnetwork/new-shared",
"version": "0.0.0",
"main": "build/dist/index.js",
"typings": "build/dist/index.d.ts",
"private": true,
"scripts": {
"test": "jest --env=jsdom"
},
"resolutions": {
"@types/react": "16.8.3",
"@types/react-dom": "16.8.2"
},
"dependencies": {
"bignumber.js": "8.0.1",
"file-saver": "^2.0.0",
"json2csv": "^4.3.3",
"lodash": "4.17.17",
"luxon": "1.10.0",
"papaparse": "^4.6.3",
"web3": "1.0.0-beta.30"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/preset-typescript": "7.0.0",
"@types/file-saver": "^2.0.0",
"@types/json2csv": "^4.2.0",
"@types/luxon": "^1.10.2",
"@types/node": "^10.12.12",
"@types/papaparse": "^4.5.7",
"@types/react": "16.8.3",
"@types/react-dom": "16.8.2",
"@types/web3": "^1.0.18",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "8.0.2",
"typescript": "3.2.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testMatch": [
"**/__tests__/**/*.(ts|js)"
],
"testURL": "http://localhost",
"testPathIgnorePatterns": [
"build"
],
"transform": {
"^.+\\.tsx?$": "../../config/babelJestWrapper.js"
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"setupFiles": [
"<rootDir>/src/testUtils/setupTests.ts"
]
}
}