generated from jimmychu0807/substrate-front-end-template
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
{
"name": "lastic",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.3.0",
"scripts": {
"dev": "next dev -p 3005",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "prettier . --check && pnpm eslint .",
"lint:fix": "prettier . --write && pnpm eslint . --fix",
"lint:format": "prettier . --write"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm lint:fix"
],
"*.{json,md,mdx,html,css,yml,yaml}": [
"pnpm lint:format"
]
},
"dependencies": {
"@azns/resolver-core": "^1.7.0",
"@azns/resolver-react": "^1.7.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.1.5",
"@material-tailwind/react": "^1.4.2",
"@mui/material": "^5.16.7",
"@mui/x-date-pickers": "^6.20.2",
"@paraspell/sdk-pjs": "8.0.3",
"@polkadot/api-base": "^11.3.1",
"@poppyseed/squid-sdk": "^0.5.0",
"@reduxjs/toolkit": "^2.3.0",
"@vercel/analytics": "^1.3.1",
"@vercel/postgres": "^0.8.0",
"animate.css": "^4.1.1",
"axios": "^1.7.7",
"chart.js": "^4.4.5",
"cheerio": "1.0.0-rc.12",
"date-fns": "^3.6.0",
"eslint": "8.36.0",
"font-awesome": "^4.7.0",
"framer-motion": "^10.18.0",
"next": "^14.2.15",
"next-redux-wrapper": "^8.1.0",
"next-themes": "^0.3.0",
"notistack": "^3.0.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-redux": "^9.1.2",
"react-type-animation": "^3.2.0",
"reactstrap": "^9.2.3",
"redux": "^5.0.1",
"vercel": "^34.4.0"
},
"devDependencies": {
"@polkadot/api": "^11.3.1",
"@polkadot/api-contract": "^11.3.1",
"@polkadot/extension-dapp": "^0.47.6",
"@polkadot/extension-inject": "^0.47.6",
"@polkadot/types": "^11.3.1",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@poppyseed/lastic-sdk": "^0.2.23",
"@types/react": "18.2.25",
"autoprefixer": "^10.4.20",
"eslint-config-next": "^13.5.7",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react-hot-toast": "^2.4.1",
"tailwindcss": "^3.4.14"
}
}