-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.47 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
{
"name": "gnoscan-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:main": "env-cmd -f .env.main next build",
"build:develop": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@apollo/client": "^3.10.6",
"@gnolang/gno-js-client": "^1.3.0",
"@gnolang/tm2-js-client": "^1.2.0",
"@popperjs/core": "^2.11.6",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"antd": "^5.0.5",
"axios": "^1.7.3",
"bech32": "^2.0.0",
"bignumber.js": "^9.1.1",
"chart.js": "^4.0.1",
"crypto": "^1.0.1",
"dayjs": "^1.11.6",
"env-cmd": "^10.1.0",
"eslint-config-next": "13.0.4",
"graphql": "^16.9.0",
"isomorphic-ws": "^5.0.0",
"next": "^14.2.5",
"react": "18.2.0",
"react-chartjs-2": "^5.0.1",
"react-dom": "18.2.0",
"react-popper": "^2.3.0",
"react-query": "^3.39.2",
"react-responsive": "^9.0.0",
"react-tooltip": "^5.0.0",
"react-twitter-embed": "^4.0.4",
"recoil": "^0.7.6",
"styled-components": "^5.3.6",
"styled-reset": "^4.4.2",
"typescript": "4.9.3",
"utility-types": "^3.10.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.10",
"@storybook/addon-interactions": "^7.0.10",
"@storybook/addon-links": "^7.0.10",
"@storybook/blocks": "^7.0.10",
"@storybook/nextjs": "^7.0.10",
"@storybook/react": "^7.0.10",
"@storybook/testing-library": "^0.0.14-next.2",
"@svgr/webpack": "^6.5.1",
"@types/graphql": "^14.5.0",
"@types/react-responsive": "^8.0.5",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"babel-loader": "^9.1.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sb": "^7.0.10",
"storybook": "^7.0.10",
"uuid": "^9.0.0"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --ext .tsx,ts src/ --fix",
"prettier --write",
"git add"
]
}
}