-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.51 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.51 KB
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
{
"name": "fellowship",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@internationalized/date": "^3.5.4",
"@nextui-org/accordion": "^2.0.28",
"@nextui-org/avatar": "^2.0.21",
"@nextui-org/button": "^2.0.21",
"@nextui-org/calendar": "^2.0.7",
"@nextui-org/card": "^2.0.21",
"@nextui-org/checkbox": "^2.0.25",
"@nextui-org/chip": "^2.0.21",
"@nextui-org/divider": "^2.0.20",
"@nextui-org/dropdown": "^2.1.10",
"@nextui-org/input": "^2.1.9",
"@nextui-org/listbox": "^2.1.10",
"@nextui-org/modal": "^2.0.23",
"@nextui-org/pagination": "^2.0.26",
"@nextui-org/popover": "^2.1.9",
"@nextui-org/progress": "^2.0.24",
"@nextui-org/radio": "^2.0.22",
"@nextui-org/scroll-shadow": "^2.1.12",
"@nextui-org/skeleton": "^2.0.22",
"@nextui-org/spinner": "^2.0.19",
"@nextui-org/switch": "^2.0.33",
"@nextui-org/system": "^2.2.2",
"@nextui-org/table": "^2.0.28",
"@nextui-org/tabs": "^2.0.26",
"@nextui-org/theme": "^2.2.6",
"@nextui-org/tooltip": "^2.0.24",
"@nivo/pie": "^0.83.0",
"@polkadot/api": "^15.0.1",
"@polkadot/api-augment": "^15.0.1",
"@polkadot/extension-inject": "^0.57.1",
"@polkadot/react-identicon": "^3.11.3",
"@polkadot/util": "^13.2.3",
"@polkadot/util-crypto": "^13.2.3",
"@urql/core": "^4.1.4",
"@urql/exchange-graphcache": "^6.3.3",
"algoliasearch": "4.17.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"fetch-ponyfill": "^7.1.0",
"firebase-admin": "^11.11.0",
"framer-motion": "^11.3.2",
"lodash.debounce": "^4.0.8",
"next": "14.2.35",
"next-themes": "^0.2.1",
"next-usequerystate": "^1.10.2",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.47.0",
"react-json-view": "^1.21.3",
"react-jwt": "^1.2.0",
"react-markdown": "^9.0.0",
"react-mde": "^11.5.0",
"react-toastify": "^9.1.3",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.8",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"autoprefixer": "^10",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.21.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"sass": "^1.69.4",
"tailwindcss": "^3",
"tw-colors": "^3.0.3",
"typescript": "^5"
},
"resolutions": {
"@polkadot/react-identicon": "^3.6.3"
},
"lint-staged": {
"**/*.(ts|tsx|js|jsx)": [
"yarn eslint --fix",
"yarn prettier --write"
],
"**/*.(md|css|scss|html)": [
"yarn prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}