-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.33 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 4.33 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
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
113
114
115
116
117
118
119
120
121
{
"name": "explorer-client",
"description": "Tangle Explorer UI",
"version": "4.0.1",
"author": "Martyn Janes <martyn.janes@iota.org>",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/explorer.git/tree/main/client"
},
"license": "Apache-2.0",
"scripts": {
"postinstall": "./script/postinstall.sh",
"start": "vite",
"preview": "vite preview",
"format": "prettier --ignore-path=.prettierignore --write src && eslint src --ext .tsx,.ts --fix",
"lint:check": "eslint src --ext .tsx,.ts && stylelint ./src/**/*.scss",
"format:check": "prettier --ignore-path=.prettierignore --check src",
"build": "tsc && vite build",
"test": "vitest"
},
"dependencies": {
"@d3fc/d3fc-axis": "^3.0.6",
"@fontsource/ibm-plex-mono": "^4.5.12",
"@fontsource/material-icons": "^4.5.4",
"@iota/crypto.js": "^1.8.6",
"@iota/identity-wasm": "^1.3.1",
"@iota/iota.js": "^1.8.6",
"@iota/mam-legacy": "github:iotaledger/mam.js#fddc95f60539b9a31a4db1b5b56e0dedb8994883",
"@iota/mam.js": "^1.6.2",
"@iota/sdk-wasm-nova": "npm:@iota/sdk-wasm@^2.0.0-beta.1",
"@iota/sdk-wasm-stardust": "npm:@iota/sdk-wasm@1.1.1",
"@iota/util.js": "^1.8.6",
"@noble/curves": "^1.5.0",
"classnames": "^2.3.1",
"d3-array": "^3.2.1",
"d3-axis": "^3.0.0",
"d3-brush": "^3.0.0",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.1.0",
"d3-time": "^3.1.0",
"d3-time-format": "^4.1.0",
"express": "^4.19.2",
"jsonschema": "^1.4.1",
"moment": "^2.29.4",
"qr.js": "0.0.0",
"react": "^18.2.0",
"react-datetime": "^3.2.0",
"react-diff-viewer": "github:msarcev/react-diff-viewer#16b45a0f585913e57d5637db4d57f4c93a0c9559",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"react-router-dom": "^5.3.3",
"socket.io-client": "^4.2.0",
"universal-cookie": "^4.0.4",
"vivagraphjs": "^0.12.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@ruffy/ts-optional": "^1.1.1",
"@types/classnames": "^2.3.1",
"@types/d3-array": "^3.0.3",
"@types/d3-axis": "^3.0.1",
"@types/d3-brush": "^3.0.2",
"@types/d3-format": "^3.0.1",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.3",
"@types/d3-shape": "^3.1.0",
"@types/d3-time": "^3.0.0",
"@types/d3-time-format": "^4.0.0",
"@types/d3-transition": "^3.0.8",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.0",
"@types/node": "^16.10.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"@vitejs/plugin-react": "^4.2.0",
"class-transformer": "^0.5.1",
"copyfiles": "^2.4.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^49.0.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"sass": "^1.54.6",
"stylelint": "^14.11.0",
"stylelint-config-property-sort-order-smacss": "^9.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.9.3",
"vite": "^4.5.3",
"vite-aliases": "^0.11.3",
"vite-plugin-node-polyfills": "^0.16.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=16 <=16.20.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"src/**/*.{ts,js,tsx,jsx}": "eslint --cache --fix",
"src/**/*.{ts,js,tsx,jsx,scss,css}": "prettier --ignore-path=.prettierignore --write"
}
}