This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 3.48 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
{
"name": "ghostcloud",
"version": "0.1.6",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"build:prod": "APP_ENV=production react-env --env APP_ENV -- npm run build",
"build:staging": "APP_ENV=staging react-env --env APP_ENV -- npm run build",
"eject": "react-scripts eject",
"test": "react-scripts test",
"prepare": "husky install",
"test:e2e": "npx playwright test --config=./e2e/playwright.config.ts",
"version": "git add -A",
"postversion": "git push --no-verify && git push --tags --no-verify"
},
"dependencies": {
"@beam-australia/react-env": "^3.1.1",
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.8",
"@liftedinit/many-js": "^0.1.1",
"@liftedinit/ui": "github:liftedinit/lifted-ui",
"@web3auth/openlogin-adapter": "^2.1.3",
"@web3auth/web3auth": "^2.1.3",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"framer-motion": "^6.2.8",
"https-browserify": "^1.0.0",
"localforage": "^1.10.0",
"process": "^0.11.10",
"react": "^17.0.2",
"react-app-rewired": "^2.2.1",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.33.1",
"react-icons": "^4.3.1",
"react-query": "^4.0.0-alpha.20",
"react-router": "^6.2.0",
"react-router-dom": "^6.2.1",
"react-scripts": "4.0.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "^4.5.4",
"uuid": "^9.0.0",
"web-vitals": "^1.1.2",
"zustand": "^3.7.1"
},
"devDependencies": {
"@playwright/test": "^1.24.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^27.4.1",
"@types/node": "^12.20.37",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/uuid": "^9.0.3",
"browserstack-local": "^1.5.1",
"dotenv": "^16.0.1",
"eslint-config-react-app": "^7.0.0",
"husky": "^8.0.1",
"prettier": "^2.6.0",
"react-error-overlay": "^6.0.9",
"start-server-and-test": "^2.0.0",
"ts-jest": "^27.1.3",
"ts-prune": "^0.10.3"
},
"overrides": {
"@babel/preset-env": "~7.16.11",
"@toruslabs/solana-embed": "~0.3.0",
"@toruslabs/base-controllers": "~2.2.6",
"@toruslabs/torus-embed": "~1.36.6",
"@toruslabs/broadcast-channel": "~6.1.0",
"@toruslabs/http-helpers": "~3.2.0",
"@toruslabs/metadata-helpers": "~3.0.0",
"@toruslabs/openlogin": "~2.7.0",
"@toruslabs/openlogin-jrpc": "~2.6.0",
"@toruslabs/openlogin-utils": "~2.1.0",
"@toruslabs/tweetnacl-js": "~1.0.3",
"@solana/web3.js": "~1.66.1"
},
"resolutions": {
"//": "See https://github.com/facebook/create-react-app/issues/11773",
"react-error-overlay": "6.0.9"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"testing-library/no-debugging-utils": [
"error",
{
"utilsToCheckFor": {
"debug": false,
"logRoles": true,
"logDOM": true
}
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:8000"
}