forked from iotaledger/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.39 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
66
67
68
69
70
71
72
73
{
"name": "explorer-client",
"description": "Tangle Explorer UI",
"version": "1.0.0",
"author": "Martyn Janes <martyn.janes@iota.org>",
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/explorer.git/tree/master/client"
},
"license": "Apache-2.0",
"dependencies": {
"@iota/iota.js": "github:iotaledger/iota.js#a09e32086ad0600047f8a250d9d7dd9191a35eec",
"@iota/mam-chrysalis.js": "github:iotaledger/mam.js#chrysalis",
"@iota/mam.js": "^1.0.0-beta.7",
"bluebird": "^3.7.2",
"chartist": "^0.11.4",
"chartist-plugin-tooltips-updated": "^0.1.4",
"classnames": "^2.2.6",
"moment": "^2.29.1",
"react": "^17.0.1",
"react-chartist": "^0.14.3",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"react-sizeme": "^2.6.12",
"socket.io-client": "^3.1.0",
"universal-cookie": "^4.0.4",
"vivagraphjs": "^0.12.0"
},
"engines": {
"node": "10.x.x"
},
"scripts": {
"start": "cross-env PORT=3000 craco start",
"lint": "eslint src --ext .tsx,.ts",
"build-internal": "craco build",
"build": "run-s lint build-internal",
"test": "craco test",
"eject": "react-scripts eject",
"sass-lint": "sass-lint -v -c ./.sass-lint.yml"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@craco/craco": "^6.1.0",
"@types/bluebird": "^3.5.33",
"@types/chartist": "^0.11.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/socket.io-client": "^1.4.35",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.6.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-unicorn": "^27.0.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"sass-lint": "^1.13.1",
"typescript": "^4.1.3"
}
}