-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.7 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
{
"name": "cudos-multisig-v2",
"license": "MIT",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"graphql-codegen": "graphql-codegen --require dotenv/config --config codegen.yaml"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@babel/core": "^7.0.0-0",
"@cosmostation/extension-client": "^0.1.7",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fontsource/poppins": "^4.5.8",
"@mui/lab": "^5.0.0-alpha.98",
"@mui/material": "^5.8.4",
"@reduxjs/toolkit": "^1.8.2",
"appollo": "^0.1.13",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"buffer": "^6.0.3",
"csstype": "^3.0.10",
"cudosjs": "1.3.4",
"firebase": "^9.9.1",
"goober": "^2.1.1",
"graphql": "^16.5.0",
"graphql-tag": "^2.0.0",
"graphql-ws": "^5.9.1",
"moment": "^2.29.4",
"react": "^18.1.0",
"react-csv": "^2.2.2",
"react-dom": "^18.0.0",
"react-is": "16.8.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-switch-selector": "^2.2.1",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"rollup": "^2.0.0",
"styled-components": "^5.3.5",
"svg-loaders-react": "^2.2.1",
"swiper": "^8.3.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@graphql-codegen/cli": "^2.7.0",
"@graphql-codegen/typescript": "^2.6.0",
"@graphql-codegen/typescript-operations": "^2.4.3",
"@graphql-codegen/typescript-react-apollo": "^3.2.17",
"@keplr-wallet/types": "^0.10.14",
"@mui/icons-material": "^5.8.4",
"@rollup/plugin-alias": "^3.1.9",
"@testing-library/dom": "7.21.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/node": "^17.0.45",
"@types/react": "^18.0.0",
"@types/react-csv": "^1.1.3",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"bech32": "^2.0.0",
"copy-to-clipboard": "^3.3.1",
"dotenv": "^16.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"redux-reset": "^0.3.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vite-plugin-svgr": "^2.2.1",
"vite-tsconfig-paths": "^3.5.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
],
"setupFiles": [
"dotenv/config"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
}
}