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
94
95
96
97
98
99
100
|
{
"name": "juick",
"version": "3.0.0",
"description": "",
"scripts": {
"test": "jest",
"dist": "webpack -p --progress",
"start": "webpack-dev-server"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"autoprefixer": "^9.4.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"error-overlay-webpack-plugin": "^0.1.6",
"eslint": "^5.12.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-only-ascii": "^0.0.0",
"eslint-plugin-react": "^7.12.3",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"internal-ip": "^3.0.1",
"jest": "^23.6.0",
"koa-connect": "^2.0.1",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"prop-types": "^15.6.2",
"react-router-prop-types": "^1.0.4",
"react-test-renderer": "^16.7.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"babel": {
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"spec": true
}
],
[
"@babel/plugin-proposal-object-rest-spread",
{
"useBuiltIns": true
}
],
"@babel/plugin-syntax-dynamic-import"
],
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage"
}
],
"@babel/preset-react"
]
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "^0.18.0",
"immutability-helper": "^2.9.0",
"moment": "^2.23.0",
"qs": "^6.6.0",
"react": "16.7.0",
"react-content-loader": "^3.4.2",
"react-cookies": "^0.1.0",
"react-dom": "16.7.0",
"react-router-dom": "^4.3.1",
"url-polyfill": "^1.1.3"
}
}
|