-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.6 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
{
"name": "resources-manager-app",
"homepage": "./",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"start": "webpack serve --mode development --config tools/webpack.dev.js",
"t": "webpack serve --mode development --config tools/webpack.config.js",
"build": "webpack --mode production --config tools/webpack.prod.js",
"deploy": "gh-pages -d build",
"test": "jest --maxConcurrency=2 --maxWorkers=2",
"lint": "eslint --ext js,jsx 'src/**/**.js' --max-warnings 0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"baseui": "^10.5.0",
"formik": "^2.2.9",
"jsonwebtoken": "^8.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-router-dom": "6",
"styletron-engine-atomic": "^1.4.8",
"styletron-react": "^6.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/parser": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.4.0",
"dotenv": "^14.2.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.4.0",
"husky": "^5.2.0",
"jest": "^27.3.1",
"path-browserify": "^1.0.1",
"postcss-loader": "^6.2.0",
"process": "0.11.10",
"stream": "^0.0.2",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.0",
"util": "^0.12.4",
"webpack": "^5.58.2",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0",
"workbox-webpack-plugin": "^6.4.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}