-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.19 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
{
"name": "@libp2p/observer-sdk",
"version": "1.1.0",
"description": "Core components, utilities and API for building libp2p introspection ui components",
"author": "AlanSl <[email protected]>",
"homepage": "",
"license": "MIT",
"main": "./build/index.js",
"module": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/observer-toolkit.git"
},
"scripts": {
"prepare": "webpack",
"storybook": "start-storybook -p 9009",
"svgr-graphic": "npx @svgr/cli -d theme/graphics ",
"svgr-icons": "npx @svgr/cli -d theme/icons theme/icons-src",
"test": "CI=true jest",
"test:watch": "jest --watch",
"update-snapshots": "npm run test -- -u"
},
"peerDependencies": {
"@libp2p/observer-data": "^1.1.0",
"react": "^16.10.2",
"react-dom": "^16.11.0",
"styled-components": "^4.4.0"
},
"dependencies": {
"bl": "^4.0.0",
"color-hash": "^1.0.3",
"d3": "^5.12.0",
"formik": "^1.5.8",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.uniqueid": "^4.0.1",
"react-dropzone": "^10.2.1",
"react-resize-detector": "^4.2.1",
"react-slidedown": "^2.4.5",
"styled-normalize": "^8.0.6",
"svg-identicon": "^1.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@svgr/cli": "^4.3.3",
"@testing-library/react": "^9.4.0",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.4",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"raw-loader": "^3.1.0",
"react-scripts": "^3.2.0",
"webpack": "4.41.0",
"webpack-cli": "^3.3.10"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/../../__jest__/setupTest.js"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/../../__jest__/styleMock.js"
},
"transform": {
"\\.(mock|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/../../__jest__/filePaths.js",
"\\.js$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
},
"gitHead": "9a1f73f71e98b6e8f27ac26133c7fc63e1fc8f7d"
}