-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
132 lines (128 loc) · 4 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@conet-project/conet-platform",
"version": "0.61.0",
"author": "CoNET technology Inc.",
"description": "The CONET project provides Innate in digital privacy from the network layer to the application layer.",
"license": "MIT",
"files": [
"./build"
],
"homepage": "https://conet.network",
"main": "./src/electron/electron.js",
"resolutions": {
"@types/react": "^18.2.38"
},
"scripts": {
"start": "concurrently --kill-others --success=first 'yarn start:gateway' 'yarn _start:web' 'wait-on tcp:3000 && NODE_ENV=development yarn _start:desktop'",
"start:storybook": "start-storybook -p 6006 -s public",
"start:gateway": "yarn seguro-gateway --port 3001",
"start:web": "concurrently --kill-others --success=first 'yarn _start:web'",
"_start:web": "BROWSER=none react-scripts start",
"__start:web": "BROWSER=none NODE_ENV=development node src/electron/start.js ",
"_start:desktop": "electron ./src/electron/electron.js",
"build": "CI=false react-scripts build",
"build:web": "CI=false react-scripts build",
"copy": "cp -r build/* ../seguro-gateway/build/localServer/workers/",
"lint": "echo 'no linter available'",
"test": "react-scripts test",
"clean": "rm -rf ./node_modules ./build ./dist",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@conet.project/seguro-worker-lib": "0.13.9",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.0",
"@mui/material": "^5.15.0",
"@mui/base": "^5.0.0-beta.27",
"@mui/material-next": "^6.0.0-alpha.113",
"@mui/lab": "^5.0.0-alpha.156",
"primereact": "^10.2.1",
"@react-icons/all-files": "^4.1.0",
"@tippyjs/react": "^4.2.6",
"dayjs": "^1.11.10",
"framer-motion": "^10.16.16",
"get-port": "^7.0.0",
"react-draggable": "^4.4.6",
"react-hot-toast": "^2.4.1",
"react-loader-spinner": "^6.1.0",
"react-lottie-player": "^1.5.5",
"react-router-dom": "^6.21.0",
"uuid": "^9.0.1",
"web-vitals": "^3.5.0",
"country-flag-icons": "^1.5.9",
"@webcontainer/api": "^1.1.8",
"@material/material-color-utilities": "^0.2.7"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^2.0.1",
"@storybook/addon-actions": "^7.6.5",
"@storybook/addon-essentials": "^7.6.5",
"@storybook/addon-links": "^7.6.5",
"@storybook/node-logger": "^7.6.5",
"@storybook/preset-create-react-app": "^7.6.5",
"@storybook/react": "^7.6.5",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/react": "^18.2.45",
"@types/react-document-meta": "^3.0.5",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^9.0.7",
"@types/react-swipeable-views": "^0.13.5",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"electron":"^28.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"modern-normalize": "^2.0.0",
"react": "^18.2.0",
"react-document-meta": "^3.0.0-beta.2",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-intl": "^6.5.5",
"react-redux": "^9.0.4",
"react-scripts": "^5.0.1",
"styled-components": "^6.1.1",
"typescript": "^5.3.3",
"wait-on": "^7.2.0",
"caniuse-lite": "^1.0.30001570",
"react-swipeable-views": "^0.14.0",
"react-d3-speedometer": "^1.1.0",
"react-gauge-chart": "^0.4.1",
"@types/react-gauge-chart": "^0.4.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}