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
|
{
"name": "juick",
"version": "3.0.0",
"description": "",
"scripts": {
"test": "jest",
"dist": "webpack --mode=production --progress",
"start": "webpack --mode=development serve"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "7.13.15",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "7.13.15",
"@babel/preset-react": "7.13.13",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.1",
"css-minimizer-webpack-plugin": "^2.0.0",
"error-overlay-webpack-plugin": "^0.4.2",
"eslint": "^7.24.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-only-ascii": "^0.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.3",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.1",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"react-test-renderer": "^17.0.2",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"babel": {
"plugins": [
"@babel/plugin-syntax-dynamic-import"
],
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3,
"shippedProposals": true
}
],
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.10.1",
"evil-icons": "^1.10.1",
"moment": "^2.29.1",
"qs": "^6.10.1",
"react": "17.0.2",
"react-content-loader": "^6.0.3",
"react-cookie": "^4.0.3",
"react-dom": "17.0.2",
"react-router-dom": "^5.2.0",
"react-use": "^17.2.3",
"react-use-form-state": "^0.13.2",
"regenerator-runtime": "^0.13.7",
"svg4everybody": "^2.1.9",
"url-polyfill": "^1.1.12"
}
}
|