-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.7 KB
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
{
"name": "react-template",
"private": false,
"version": "1.0.0",
"scripts": {
"start": "vite --mode development",
"start:prod": "vite --mode production",
"build": "vite build --mode production",
"build:dev": "vite preview",
"build:prod": "tsc && vite build --mode production",
"lint": "yarn lint:format && yarn lint:fix ",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"typecheck": "tsc --noEmit",
"postinstall": "husky install"
},
"dependencies": {
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@mui/icons-material": "5.10.6",
"@mui/material": "5.10.6",
"@reduxjs/toolkit": "1.8.5",
"axios": "0.27.2",
"axios-observable": "1.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.2",
"react-router-dom": "6.4.0",
"rxjs": "7.5.6",
"styled-components": "5.3.5"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-redux": "7.1.24",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"@vitejs/plugin-react": "2.1.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-simple-import-sort": "8.0.0",
"husky": "8.0.1",
"prettier": "2.7.1",
"sass": "1.54.9",
"typescript": "4.8.3",
"vite": "3.1.2",
"vite-tsconfig-paths": "3.5.0"
}
}