-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.91 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
{
"name": "canto-starter-kit",
"description": "This project consists of all the first party supported apps for canto network.",
"version": "0.0.01",
"private": true,
"author": {
"name": "Plex Engineer",
"url": "https://github.com/Plex-Engineer"
},
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.prod.json && vite build",
"preview": "vite preview",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --fix",
"test": "NODE_ENV=test jest",
"typechain:generate": "npm run typechain --target=ethers-v5 ./src/abi/*.json --out-dir=./gen/types"
},
"dependencies": {
"@cosmjs/stargate": "^0.30.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@injectivelabs/core-proto-ts": "^0.0.11",
"@keplr-wallet/types": "^0.11.53",
"@usedapp/coingecko": "^1.1.5",
"@usedapp/core": "^1.1.5",
"bignumber.js": "^9.0.2",
"ethers": "^5.6.9",
"mixpanel": "^0.16.0",
"mixpanel-browser": "^2.45.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-fade-in": "^2.0.1",
"react-helmet-async": "^1.3.0",
"react-modal": "^3.15.1",
"react-router-dom": "^6.4.1",
"react-select": "^5.4.0",
"react-tabs": "^5.1.0",
"react-toastify": "^9.0.5",
"react-tooltip": "^4.2.21",
"reactjs-popup": "^2.0.5",
"sass": "^1.54.0",
"zustand": "^4.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@swc/core": "^1.2.248",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@typechain/ethers-v5": "^10.0.0",
"@types/mixpanel-browser": "^2.38.0",
"@types/react": "^18.0.0",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.0",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitejs/plugin-react": "^1.3.0",
"babel-jest": "^29.3.1",
"camelcase": "^6.3.0",
"eslint": "^8.22.0",
"eslint-config-fbjs": "^4.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.15.0",
"hermes-eslint": "^0.9.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.0.2",
"jest-watch-typeahead": "^2.1.1",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"react-test-renderer": "^18.2.0",
"rollup-plugin-polyfill-node": "^0.10.2",
"typechain": "^8.0.0",
"typescript": "^4.6.3",
"vite": "^2.9.7",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^3.4.1"
}
}