-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
101 lines (101 loc) · 3.05 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
{
"name": "@gnoswap-labs/web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src",
"i18n:download": "i18nexus pull",
"test": "jest --watch",
"test:ci": "jest --ci --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@adena-wallet/sdk": "^0.0.8",
"@bufbuild/protobuf": "^2.2.3",
"@emotion/css": "11.10.6",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@floating-ui/react": "0.21.1",
"@gnolang/gno-js-client": "1.3.2",
"@gnolang/tm2-js-client": "1.2.4",
"@hookform/resolvers": "3.3.2",
"@tanstack/react-query": "4.26.1",
"axios": "1.3.4",
"bech32": "2.0.0",
"bignumber.js": "9.1.1",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"d3": "^7.8.5",
"dayjs": "1.11.7",
"i18next": "^23.11.5",
"i18next-chained-backend": "^4.6.2",
"i18next-http-backend": "^2.5.2",
"i18next-localstorage-backend": "^4.2.0",
"jotai": "2.2.1",
"next": "13.2.3",
"next-i18next": "^15.3.0",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.47.0",
"react-i18next": "^14.1.2",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"typescript": "4.9.5",
"url-loader": "4.1.1",
"utility-types": "3.10.0",
"uuid": "^9.0.1",
"ws": "8.14.2",
"yup": "1.3.2"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.21.0",
"@babel/runtime": "7.21.0",
"@emotion/babel-plugin": "11.10.6",
"@emotion/babel-preset-css-prop": "11.10.0",
"@faker-js/faker": "7.6.0",
"@jest/globals": "29.4.3",
"@mdx-js/react": "1.6.22",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-docs": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "6.5.16",
"@storybook/testing-library": "0.0.13",
"@svgr/webpack": "6.5.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/crypto-js": "^4.2.1",
"@types/d3": "^7.4.0",
"@types/jest": "29.4.0",
"@types/node": "18.14.6",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/uuid": "^9.0.7",
"@typescript-eslint/parser": "^8.0.0",
"babel-jest": "29.4.3",
"babel-loader": "9.1.2",
"eslint-config-next": "13.2.3",
"eslint-config-prettier": "^9.1.0",
"i18nexus-cli": "^3.4.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.5.0",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"react-docgen-typescript-loader": "3.7.2",
"ts-jest": "29.0.5",
"tsconfig-paths-webpack-plugin": "4.0.1",
"webpack-merge": "5.8.0"
}
}