-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.54 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.54 KB
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
101
102
103
104
105
106
107
108
109
110
{
"name": "shield-ft",
"version": "1.0.0",
"description": "Shield web app",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --colors --hot --watch --open --config ./webpack.dev.js",
"build": "webpack --mode production --config ./webpack.prod.js",
"test": "jest",
"watch-test": "jest --watch",
"test:ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit && codecov"
},
"author": "hoangtrongminhduc",
"license": "MIT",
"dependencies": {
"@ant-design/dark-theme": "^0.2.2",
"@babel/runtime": "^7.4.4",
"@hapi/joi": "^15.1.0",
"antd": "^3.20.5",
"axios": "^0.19.0",
"dotenv": "^8.0.0",
"jest": "^25.1.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"react": "^16.8.4",
"react-confirm-alert": "^2.4.1",
"react-dom": "^16.8.4",
"react-dropzone": "^10.1.0",
"react-helmet": "^5.2.1",
"react-particles-js": "^2.7.0",
"react-redux": "^6.0.1",
"react-responsive-modal": "^3.6.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scroll-up-button": "^1.6.4",
"react-select": "^2.4.3",
"react-table": "^6.9.2",
"react-timeago": "^4.4.0",
"react-toastify": "^5.0.0-rc.3",
"react-tooltip": "^3.10.0",
"react-waypoint": "^9.0.2",
"redux": "^4.0.1",
"redux-react-session": "^2.5.0",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"resolve-url-loader": "^3.1.0",
"styled-components": "^5.0.1",
"universal-cookie": "^3.1.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.8.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.12.0",
"babel-plugin-react-native-classname-to-style": "^1.2.2",
"babel-preset-stage-2": "^6.24.1",
"clean-terminal-webpack-plugin": "^2.0.5",
"clean-webpack-plugin": "^2.0.0",
"codecov": "^3.6.4",
"copy-webpack-plugin": "^5.0.1",
"css-loader": "^2.1.0",
"cssnano": "^4.1.10",
"error-overlay-webpack-plugin": "^0.4.1",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^3.0.1",
"ftp-deploy": "^2.3.1",
"html-webpack-plugin": "^3.2.0",
"jest-junit": "^10.0.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"prettier": "^1.19.1",
"react-hot-loader": "^4.7.2",
"react-test-renderer": "^16.12.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"sugarss": "^2.0.0",
"terser-webpack-plugin": "^1.2.3",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^2.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"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)$": "<rootDir>/__mocks__/styleMock.js"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}