forked from CoNET-project/seguro-platform
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (119 loc) · 3.63 KB
/
package.json
File metadata and controls
122 lines (119 loc) · 3.63 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
122
{
"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.14.18",
"@mui/material": "^5.14.18",
"@mui/lab": "^5.0.0-alpha.153",
"primereact": "^10.1.1",
"@react-icons/all-files": "^4.1.0",
"@tippyjs/react": "^4.2.6",
"dayjs": "^1.11.10",
"framer-motion": "^10.16.5",
"get-port": "^7.0.0",
"react-draggable": "^4.4.6",
"react-hot-toast": "^2.4.1",
"react-loader-spinner": "^5.4.5",
"react-lottie-player": "^1.5.5",
"react-router-dom": "^6.19.0",
"uuid": "^9.0.1",
"web-vitals": "^3.5.0",
"country-flag-icons": "^1.5.7",
"@webcontainer/api": "^1.1.8"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/node-logger": "^7.5.3",
"@storybook/preset-create-react-app": "^7.5.3",
"@storybook/react": "^7.5.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"@types/react": "^18.2.38",
"@types/react-document-meta": "^3.0.5",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.32",
"@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":"^27.1.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": "^8.1.3",
"react-scripts": "^5.0.1",
"styled-components": "^6.1.1",
"typescript": "^5.3.2",
"wait-on": "^7.2.0",
"caniuse-lite": "^1.0.30001564",
"react-swipeable-views": "^0.14.0"
},
"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"
}
}
]
}
}