forked from homenoc/dsbd-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.75 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
101
102
{
"name": "dsbd-web",
"version": "0.1.0",
"private": true,
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^3.1.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.1",
"@mui/x-date-pickers": "^6.2.1",
"@redux-devtools/extension": "^3.2.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/js-cookie": "^3.0.3",
"@types/node": "^15.14.9",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-swipeable-views": "^0.13.1",
"@types/redux-logger": "^3.0.9",
"@types/sha.js": "^2.4.0",
"axios": "^1.3.6",
"buffer": "^6.0.3",
"date-fns": "^2.29.3",
"js-cookie": "^3.0.1",
"moment": "^2.29.4",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-markdown": "^8.0.7",
"react-redux": "^8.0.5",
"react-router-dom": "^6.10.0",
"react-use-websocket": "^4.3.1",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"remark-gfm": "^3.0.1",
"sha.js": "^2.4.11",
"typescript": "~5.0.4",
"web-vitals": "^3.3.1",
"yup": "^1.1.1"
},
"scripts": {
"start": "vite --mode development",
"start-prod": "vite --mode production",
"build": "vite build --mode development",
"build-staging": "vite build --mode staging",
"build-prod": "vite build",
"test": "jest",
"eject": "vite eject",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"lint:conflict": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-prettier": "^3.0.0",
"vite": "^4.3.1",
"vite-plugin-pwa": "^0.14.7",
"vite-tsconfig-paths": "^4.2.0"
}
}