forked from hyperledger/firefly-ui
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.03 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
{
"name": "firefly-ui",
"version": "1.0.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.78",
"@mui/material": "^5.6.2",
"@mui/styles": "^5.6.2",
"@nivo/bar": "^0.79.1",
"@nivo/core": "^0.79.0",
"@nivo/network": "^0.79.1",
"@types/dagre": "^0.7.47",
"dagre": "^0.8.5",
"dayjs": "^1.11.1",
"i18next": "^21.6.16",
"pretty-bytes": "^6.0.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-flow-renderer": "^10.1.1",
"react-i18next": "^11.16.6",
"react-infinite-scroll-component": "^6.1.0",
"react-jazzicon": "^1.0.3",
"react-json-view": "^1.21.3",
"react-query": "^3.35.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"reconnecting-websocket": "^4.4.0",
"typescript": "^4.6.3"
},
"scripts": {
"start:sm": "react-scripts start",
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint \"{src,apps,libs,test}/**/*.tsx\" --fix",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@types/react": "^17.0.43",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^17.0.14",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
},
"proxy": "http://localhost:5000"
}