-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
124 lines (124 loc) · 4.3 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
{
"name": "vault-gui",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 5000",
"doppler-dev": "doppler setup --project vault-gui --config dev && doppler run -- yarn dev",
"build": "next build",
"start": "next start -p 5000",
"start:ci": "next build && next start -p 5000",
"encrypt:secret": "node secrets/encrypt.js",
"lint": "next lint",
"prettier": "prettier -c **/*.ts **/*.tsx",
"prettier:write": "prettier --write **/*.ts **/*.tsx",
"ts": "tsc --noEmit --incremental",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"gen:gql": "DOTENV_CONFIG_PATH=./.env.local graphql-codegen --config codegen.yml -r dotenv/config",
"e2e": "start-server-and-test start:ci http://localhost:5000 cypress",
"e2e:headless": "start-server-and-test start:ci http://localhost:5000 cypress:headless",
"test": "jest --ci",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@corsali/userdata-extractor": "0.3.1",
"@datadog/browser-rum": "^4.20.0",
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.3",
"@emotion/serialize": "^1.0.4",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@google-cloud/storage": "^6.2.3",
"@iconify/react": "^3.2.2",
"@radix-ui/react-checkbox": "^1.0.0",
"@radix-ui/react-collapsible": "^0.1.6",
"@radix-ui/react-dialog": "^0.1.7",
"@radix-ui/react-dropdown-menu": "^1.0.0",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-popover": "^0.1.6",
"@radix-ui/react-portal": "^0.1.4",
"@radix-ui/react-toast": "^1.0.0",
"@radix-ui/react-tooltip": "^1.0.0",
"@toruslabs/openlogin": "^2.5.0",
"@typeform/embed-react": "^1.19.0",
"@web3auth/base": "^1.2.0",
"@web3auth/ethereum-provider": "1.2.0",
"@web3auth/metamask-adapter": "1.2.0",
"@web3auth/openlogin-adapter": "^1.2.0",
"@web3auth/ui": "1.2.0",
"@web3auth/wallet-connect-v1-adapter": "^1.2.0",
"@web3auth/web3auth": "^1.2.0",
"apollo-client-link-debounce-test": "^3.0.0",
"apollo-link-queue": "^3.1.0",
"apollo3-cache-persist": "^0.14.1",
"axios": "^0.27.2",
"deepmerge": "^4.2.2",
"dotenv": "^16.0.1",
"ethereum-public-key-to-address": "^0.0.5",
"formik": "^2.2.9",
"framer-motion": "^6.5.1",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"jose": "^4.8.3",
"libsodium-wrappers": "^0.7.10",
"lodash": "^4.17.21",
"loglevel": "^1.8.0",
"next": "12.2.0",
"next-api-middleware": "^2.0.1",
"next-themes": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3",
"react-use-measure": "^2.1.1",
"subscriptions-transport-ws": "^0.11.0",
"tailwindcss": "^3.1.6",
"twin.macro": "^3.0.0-rc.3",
"web3": "^1.7.4"
},
"devDependencies": {
"@corsali/eslint-config": "^1.4.0",
"@corsali/prettier-config": "^1.0.0",
"@emotion/babel-plugin": "^11.9.2",
"@graphql-codegen/cli": "^2.8.1",
"@graphql-codegen/fragment-matcher": "^3.3.0",
"@graphql-codegen/import-types-preset": "^2.2.1",
"@graphql-codegen/introspection": "^2.2.0",
"@graphql-codegen/typescript": "^2.7.1",
"@graphql-codegen/typescript-graphql-request": "^4.5.1",
"@graphql-codegen/typescript-operations": "^2.5.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/libsodium-wrappers": "^0.7.9",
"@types/lodash": "^4.14.182",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"babel-plugin-macros": "^3.1.0",
"cypress": "^10.3.0",
"eslint": "8.18.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"graphql-codegen-apollo-next-ssr": "^1.7.4",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"prettier": "@corsali/prettier-config"
}