-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.25 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
{
"name": "crypto-widget",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"serve": "vite",
"test": "jest",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"commit": "git add -A && git-cz",
"lint:eslint": "eslint --fix --ext .js,.ts,.tsx ./src",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,html,md}\"",
"lint:lint-staged": "lint-staged"
},
"dependencies": {
"@apollo/client": "^3.7.10",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.14",
"@mui/x-data-grid": "^6.0.4",
"firebase": "^9.18.0",
"html2canvas": "^1.4.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.3.4",
"react-material-ui-carousel": "^3.4.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"react-transition-group": "^4.4.5",
"redux": "^4.2.1",
"redux-saga": "^1.2.3",
"styled-components": "^5.3.9"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.15.10",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-grid-layout": "^1.3.2",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"cz-git": "^1.6.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.60.0",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-html": "^3.2.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}