-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.14 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "observation-deck",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"version": "0.0.1",
"description": "Public catalogue of widgets for visualising libp2p introspection data, built on observer-toolkit",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/libp2p/observation-deck.git"
},
"author": "Nearform",
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/observation-deck/issues"
},
"homepage": "https://libp2p.github.io/observation-deck",
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "CI=true craco test --passWithNoTests",
"test:watch": "craco test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix",
"prettier": "prettier --check './**/*.js'",
"prettier-fix": "prettier --write './**/*.js'"
},
"peerDependencies": {
"webpack": "^4.41.0"
},
"dependencies": {
"@baristalabs/craco-raw-loader": "^1.1.1",
"@craco/craco": "^5.6.4",
"@libp2p/observer-catalogue": "^1.0.0",
"@libp2p/observer-connections-table": "^1.0.0",
"@libp2p/observer-data": "^1.0.0",
"@libp2p/observer-dht-buckets": "^1.0.0",
"@libp2p/observer-events-table": "^1.0.0",
"@libp2p/observer-samples": "^1.0.0",
"@libp2p/observer-sdk": "^1.0.0",
"@libp2p/observer-shell": "^1.0.0",
"@libp2p/observer-streams-table": "^1.0.0",
"arraybuffer-loader": "^1.0.8",
"craco-babel-loader": "^0.1.4",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-markdown": "^4.2.2",
"react-scripts": "3.2.0",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^9.4.0",
"babel": "^6.23.0",
"babel-jest": "^24.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"core-js": "^3.6.5",
"create-react-app": "3.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"gh-pages": "^2.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.4",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"raw-loader": "^3.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"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"
}
}
}