-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.66 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": "react-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development",
"cert": "./bin/generate_cert.sh server",
"host": "webpack-dev-server --mode development --devrig",
"fix": "run-s fix:*",
"fix:eslint": "eslint --fix src/**/*.{ts,tsx,js}",
"fix:prettier": "prettier --loglevel warn --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.16.7",
"@types/jsonwebtoken": "^8.5.8",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^3.4.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^8.8.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-sonarjs": "^0.11.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^4.0.0-beta.11",
"isomorphic-fetch": "^3.0.0",
"jest": "^24.9.0",
"node-sass": "^4.13.0",
"prettier": "^2.5.1",
"regenerator-runtime": "^0.13.3",
"sass-loader": "^7.3.1",
"style-loader": "^0.21.0",
"typescript": "^4.6.2",
"webpack": "^4.41.3",
"npm-run-all": "^4.1.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@mantine/hooks": "^4.0.9",
"antd": "^4.19.1",
"core-js": "^3.5.0",
"firebase": "^9.6.8",
"javascript-time-ago": "^2.3.13",
"jsonwebtoken": "^8.5.1",
"react": "^17.0.2",
"react-country-flag": "^3.0.2",
"react-dom": "^17.0.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"jest": {
"setupFiles": [
"<rootDir>/test/jestsetup.js"
],
"transform": {
"^.+\\.js?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(scss|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|sccss|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}