-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.29 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "crypto-react",
"title": "Crypto App Project",
"description": "Crypto App Project a Simple Project that shows many tools and other tricks...",
"author": {
"name": "Ali Bagheri",
"email": "alibagheri2079.dev@gmail.com",
"url": "https://www.github.com/alibagheri2079"
},
"keywords": [
"Cryptos",
"Bitcoin"
],
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint:scripts": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:scripts:fix": "pnpm run lint:scripts --fix",
"lint:styles": "stylelint ./src/**/*.css",
"lint": "pnpm run lint:scripts:fix & pnpm run lint:styles",
"format:scripts": "prettier src --check",
"format:scripts:fix": "pnpm run format:scripts --write",
"format:styles": "pnpm run lint:styles --fix",
"format": "pnpm run format:scripts:fix & pnpm run format:styles",
"svgr": "svgr -d src/components/Icons/ src/assets/icons",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.13",
"@mantine/dates": "^6.0.16",
"@mantine/hooks": "^6.0.13",
"@mantine/spotlight": "^6.0.17",
"@tabler/icons-react": "^2.22.0",
"@tanstack/react-table": "^8.9.3",
"@types/node": "^20.3.0",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"d3": "^7.8.5",
"dayjs": "^1.11.9",
"i18next": "^23.2.2",
"i18next-browser-languagedetector": "^7.0.2",
"mantine-react-table": "1.0.0-beta.24",
"react": "^18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-helmet-async": "^1.3.0",
"react-i18next": "^13.0.0",
"react-lazy-load-image-component": "^1.6.0",
"react-router-dom": "^6.13.0",
"styled-components": "6.0.0-rc.3",
"stylis": "^4.2.0",
"stylis-plugin-rtl": "^2.1.1",
"swr": "^2.2.2",
"twin.macro": "^3.3.1",
"vite-plugin-svgr": "^3.2.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@svgr/cli": "^8.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-lazy-load-image-component": "^1.6.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.1",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-tailwindcss": "^3.12.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.4.2",
"prettier": "^2.8.8",
"stylelint": "^15.7.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"stylelint-order": "^6.0.3",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.2",
"typescript-plugin-styled-components": "^3.0.0",
"vite": "^4.3.9"
}
}