This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
forked from helix-bridge/helix-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "helix-xtoken-ui",
"description": "Helix xToken UI",
"private": true,
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"start": "next start",
"dev:test": "NODE_ENV=test next dev -p 3030",
"build:test": "NODE_ENV=test next build",
"start:test": "NODE_ENV=test next start",
"prettier": "prettier '**/*.{js,jsx,ts,tsx,json}' --write",
"lint": "next lint",
"test": "jest",
"bootstrap": "npm install",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helix-bridge/helix-xtoken-ui.git"
},
"keywords": [
"helix",
"helix-xtoken",
"helixbridge"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/helix-bridge/helix-xtoken-ui/issues"
},
"homepage": "https://github.com/helix-bridge/helix-xtoken-ui#readme",
"dependencies": {
"@apollo/client": "^3.8.2",
"@floating-ui/react": "^0.25.2",
"@polkadot/api": "^10.11.1",
"@rainbow-me/rainbowkit": "^1.3.3",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"graphql": "^16.8.0",
"next": "14.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-jazzicon": "^1.0.4",
"react-transition-group": "^4.4.5",
"sharp": "^0.32.6",
"viem": "^1.21.4",
"wagmi": "^1.4.13"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.5.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-transition-group": "^4.4.6",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.16",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^14.0.0",
"postcss": "^8.4.27",
"prettier": "3.0.1",
"prettier-plugin-tailwindcss": "^0.5.2",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16.8.0"
}
}