forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.73 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
{
"name": "@trezor/connect-explorer",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "rimraf build && TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/dev.webpack.config.ts",
"build": "rimraf build && TS_NODE_PROJECT=\"tsconfig.json\" yarn webpack --config ./webpack/prod.webpack.config.ts",
"lint:js": "yarn g:eslint '**/*{.ts,.tsx}'",
"type-check": "tsc --build tsconfig.json"
},
"dependencies": {
"@trezor/components": "workspace:*",
"@trezor/connect-web": "workspace:*",
"@trezor/protobuf": "workspace:*",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-replace-link": "^1.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-infinity-menu": "^4.0.0",
"react-inspector": "^6.0.2",
"react-redux": "8.0.7",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"styled-components": "^5.3.10"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.26",
"babel-loader": "^9.1.2",
"html-webpack-plugin": "^5.5.3",
"jest": "^26.6.3",
"rimraf": "^5.0.1",
"terser-webpack-plugin": "^5.3.9",
"typescript": "4.9.5",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0",
"webpack-plugin-serve": "^1.6.0"
}
}