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 -p --progress",
"start": "webpack-dev-server"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"autoprefixer": "^9.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"connect-history-api-fallback": "^1.5.0",
"css-loader": "^1.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"error-overlay-webpack-plugin": "^0.1.5",
"eslint": "^5.8.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-jest": "^21.27.1",
"eslint-plugin-only-ascii": "^0.0.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"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.4.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.2",
"react-router-prop-types": "^1.0.4",
"react-test-renderer": "^16.6.0",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"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",
"targets": {
"browsers": "ie >=9, android >= 4.2"
}
}
],
"@babel/preset-react"
]
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"axios": "^0.18.0",
"immutability-helper": "^2.8.1",
"moment": "^2.22.2",
"query-string": "^6.2.0",
"react": "16.6.0",
"react-content-loader": "^3.2.0",
"react-cookies": "^0.1.0",
"react-dom": "16.6.0",
"react-router-dom": "^4.3.1"
}
}
|