forked from ipld/explore.ipld.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.37 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
{
"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"
},
"dependencies": {
"i18next": "^19.1.0",
"i18next-browser-languagedetector": "^4.0.1",
"i18next-http-backend": "^1.0.15",
"i18next-icu": "^1.3.1",
"internal-nav-helper": "^1.0.2",
"ipfs": "^0.40.0",
"ipfs-css": "^0.9.0",
"ipfs-http-client": "^41.0.1",
"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": "1.6.0",
"ipld-git": "^0.2.3",
"ipld-raw": "^2.0.1",
"ipld-zcash": "^0.4.1",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-i18next": "^11.2.7",
"react-loadable": "^5.4.0",
"react-virtualized": "^9.20.0",
"redux-bundler": "^21.2.2",
"redux-bundler-react": "^1.0.1",
"tachyons": "^4.11.1",
"window-or-global": "^1.0.1"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"bundlesize": "^0.18.0",
"ecstatic": "^3.2.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"puppeteer": "^2.0.0",
"react-scripts": "^3.4.1",
"react-test-renderer": "^16.12.0",
"webpack-bundle-analyzer": "^3.0.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"bundlesize": [
{
"path": "./build/static/js/*.js",
"maxSize": "600 kB"
},
{
"path": "./build/static/css/*.css",
"maxSize": "18 kB"
}
],
"homepage": "./"
}