-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.46 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
{
"name": "react",
"description": "React boilerplate project",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepare": "husky install",
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js --progress --color --env hash",
"eval": "webpack --config webpack.dev.js --progress --color --env eval openAnalyzer",
"sqa": "yarn build && yarn lint && yarn test"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@loadable/component": "^5.15.2",
"@mantine/core": "^4.2.2",
"@mantine/dates": "^4.2.2",
"@mantine/form": "^4.2.2",
"@mantine/hooks": "^4.2.2",
"@mantine/modals": "^4.2.2",
"@mantine/notifications": "^4.2.2",
"@mantine/spotlight": "^4.2.2",
"dayjs": "^1.11.4",
"formik": "^2.2.9",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.3.0",
"tabler-icons-react": "^1.53.0",
"terser": ">=5.14.2",
"ws": ">=7.4.6"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@loadable/babel-plugin": "^5.13.2",
"@loadable/webpack-plugin": "^5.15.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"babel-loader": "^8.2.4",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"prettier": "^2.3.2",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-subresource-integrity": "^5.1.0"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"resolutions": {
"terser": ">=5.14.2",
"cross-fetch": ">=3.1.5",
"ws": ">=7.4.6",
"minimatch": ">=3.0.5"
}
}