forked from ical10/dashboard-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "dashboard-ui",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@material-tailwind/react": "^1.2.4",
"@mui/icons-material": "^5.10.2",
"@mui/material": "^5.10.2",
"@mui/x-data-grid": "^5.15.3",
"@polkadot/api": "^9.5.2",
"@polkadot/extension-dapp": "^0.44.6",
"@polkadot/react-identicon": "^2.9.14",
"axios": "^1.1.3",
"chart.js": "^3.9.1",
"iconsax-react": "^0.0.8",
"next": "12.2.5",
"next-auth": "^4.15.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "18.2.0"
},
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"@svgr/webpack": "^6.3.1",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/node": "18.7.8",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"autoprefixer": "^10.4.8",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "4.7.4"
},
"lint-staged": {
"**/*": [
"npx prettier --write --ignore-unknown"
]
}
}