-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.58 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
103
104
{
"name": "react-vite-assignment",
"version": "1.0.0",
"main": "src/app.js",
"license": "MIT",
"scripts": {
"dev": "env-cmd -f .env.local vite",
"dev:dev": "env-cmd -f .env.development vite",
"dev:prod": "env-cmd -f .env.production vite",
"build": "vite build",
"build:dev": "env-cmd -f .env.development run-s clean build",
"build:prod": "env-cmd -f .env.production run-s clean build",
"start": "pnpm dev",
"start:dev": "env-cmd -f .env.development run-s clean build start",
"start:prod": "env-cmd -f .env.production run-s clean build start",
"preview": "vite preview",
"clean": "rimraf dist",
"lint": "pnpm lint-js && pnpm lint-fix && pnpm lint-ts && pnpm lint-css && pnpm format",
"lint-js": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"lint-ts": "tsc --noemit --pretty",
"lint-fix": "eslint --fix './src/**/*.{js,jsx,ts,tsx}'",
"lint-css": "stylelint './src/**/*.{jsx,js,tsx,ts}'",
"format": "prettier --config ./.prettierrc.json ./src/**/*.{ts,tsx,json} --write",
"prepare": "husky install",
"docker:prod:build": "make build-production",
"docker:prod:start": "make start-production",
"docker:prod:stop": "make stop-production"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.11",
"@mui/styles": "^5.14.18",
"@mui/x-data-grid": "^5.17.9",
"@redux-saga/core": "^1.2.1",
"@reduxjs/toolkit": "^1.8.6",
"axios": "^1.1.3",
"buffer": "^6.0.3",
"connected-react-router": "^6.9.3",
"dotenv": "^16.0.3",
"history": "^5.3.0",
"i18next": "^22.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.38.0",
"react-i18next": "^12.0.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.2",
"react-scripts": "5.0.1",
"redux": "^4.2.0",
"redux-first-history": "^5.1.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.1",
"web-vitals": "^3.0.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@redux-saga/types": "^1.2.1",
"@types/mui-image": "^1.0.1",
"@types/node": "^18.11.8",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-react": "^2.2.0",
"c8": "^7.12.0",
"env-cmd": "^10.1.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"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.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jsdom": "^20.0.2",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.55.0",
"stylelint": "14.14.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard-scss": "6.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"typescript": "^4.8.4",
"vite": "^3.2.1"
}
}