-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.85 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
{
"name": "client",
"version": "0.0.1",
"scripts": {
"build": "webpack --config webpack.config.js --mode=production",
"build:analyze": "yarn build --analyze",
"build:dev": "webpack --config webpack.config.js --mode=development",
"check-types": "tsc --noemit",
"dev": "webpack serve --mode=development",
"format": "yarn format:ts && yarn format:scss",
"format:ts": "prettier --write \"./src/**/*{.ts,.tsx}\"",
"format:scss": "prettier --write \"./src/**/*.scss\"",
"format:check": "prettier --check \"./src/**/*{.ts,.tsx,.scss}\"",
"lint": "eslint \"./src/**/*{.ts,.tsx}\"",
"precommit": "lint-staged",
"prepare": "husky install"
},
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"dependencies": {
"antd": "^4.19.1",
"axios": "^0.25.0",
"classnames": "^2.3.1",
"formik": "^2.2.9",
"framer-motion": "^6.2.7",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"papaparse": "^5.3.2",
"react": "^17.0.2",
"react-big-calendar": "^0.39.0",
"react-dom": "^17.0.2",
"react-drag-listview": "^0.1.9",
"react-highlight-words": "^0.17.0",
"react-icons": "^4.3.1",
"react-password-checklist": "^1.3.3",
"react-router-dom": "6",
"simplebar": "^5.3.6",
"simplebar-react": "^2.3.6",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/js-cookie": "^3.0.1",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.16",
"@types/papaparse": "^5.3.2",
"@types/react": "^17.0.30",
"@types/react-big-calendar": "^0.36.2",
"@types/react-dom": "^17.0.9",
"@types/react-highlight-words": "^0.16.4",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.4.0",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^5.4.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"moment-locales-webpack-plugin": "^1.2.0",
"postcss": "^8.3.9",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.0",
"typescript": "4.4.4",
"webpack": "^5.59.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
},
"browserslist": [
"defaults"
]
}