-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.81 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
{
"name": "minting-dapp-admin",
"version": "1.0.0",
"description": "admin panel for minting-dapp",
"main": "index.js",
"author": "maksim hodasevich (dapp team)",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "webpack-dev-server --hot",
"build": "NODE_ENV=production webpack",
"fix": "yarn lint && yarn format",
"lint": "eslint --fix './src/**/*.{js,ts,tsx,json}'",
"format": "prettier --write './src/**/*.{js,ts,tsx,scss,md,json}'",
"crlf": "prettier --end-of-line crlf --write ."
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.9",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.17.15",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-select-country-list": "^2.2.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"autoprefixer": "^10.4.20",
"bundle-stats-webpack-plugin": "^4.12.0",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^5.0.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.8.1",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"sass-loader": "^16.0.3",
"tailwindcss": "^4.0.9",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^5.4.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@mui/x-data-grid": "^7.27.0",
"@mui/x-date-pickers": "^7.0.0",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-popover": "^1.1.6",
"@tanstack/react-query": "^5.66.8",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.6.7",
"class-variance-authority": "^0.7.1",
"date-fns": "2.30.0",
"dotenv-webpack": "^8.0.1",
"formik": "^2.4.5",
"material-react-table": "^3.0.1",
"react": "^18.2.0",
"react-advanced-cropper": "^0.20.0",
"react-day-picker": "^9.5.1",
"react-dom": "^18.2.0",
"react-easy-crop": "^5.0.7",
"react-intersection-observer": "^9.15.1",
"react-router-dom": "^7.2.0",
"react-select-country-list": "^2.2.3",
"tailwind-merge": "^3.0.1",
"uuid": "^11.0.3",
"yup": "^1.4.0",
"zustand": "^5.0.2"
}
}