forked from ipld/explore.ipld.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.64 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ipld-explorer",
"description": "Explore the Merkle Forest from the comfort of your browser",
"version": "1.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build --stats",
"test": "react-scripts test --env=node",
"test:coverage": "react-scripts test --coverage",
"test:serve": "ecstatic build --cache=0 --port=3001",
"test:e2e": "react-scripts test --roots test/ --testMatch '**/*.test.js'",
"test:e2e:ci": "URL=http://localhost:3001 run-p --race test:serve test:e2e",
"analyze": "webpack-bundle-analyzer build/bundle-stats.json",
"bundlesize": "bundlesize",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"postinstall": "patch-package"
},
"dependencies": {
"@ipfs-shipyard/ignite-metrics": "^1.2.2",
"i18next": "^21.6.16",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-chained-backend": "^3.0.2",
"i18next-http-backend": "^1.4.0",
"i18next-icu": "^2.0.3",
"i18next-localstorage-backend": "^3.1.3",
"internal-nav-helper": "^3.1.0",
"intl-messageformat": "^9.12.0",
"ipfs-core": "^0.13.0",
"ipfs-css": "^1.3.0",
"ipfs-http-client": "^55.0.0",
"ipld": "^0.21.1",
"ipld-bitcoin": "^0.1.9",
"ipld-dag-cbor": "^0.13.1",
"ipld-dag-pb": "^0.15.2",
"ipld-ethereum": "^2.0.3",
"ipld-explorer-components": "^2.5.1",
"ipld-git": "^0.2.3",
"ipld-raw": "^2.0.1",
"ipld-zcash": "^0.4.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-i18next": "^11.16.6",
"react-loadable": "^5.5.0",
"react-virtualized": "^9.21.2",
"redux-bundler": "^26.1.0",
"redux-bundler-react": "^1.2.0",
"tachyons": "^4.12.0",
"window-or-global": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"bundlesize": "^0.18.1",
"ecstatic": "^3.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"npm-run-all": "^4.1.5",
"patch-package": "^6.5.1",
"prettier": "^1.16.4",
"puppeteer": "^2.0.0",
"react-scripts": "^4.0.3",
"react-test-renderer": "^16.13.1",
"webpack-bundle-analyzer": "^3.0.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"bundlesize": [
{
"path": "./build/static/js/*.js",
"maxSize": "600 kB"
},
{
"path": "./build/static/css/*.css",
"maxSize": "18 kB"
}
],
"homepage": "./"
}