-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.41 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
{
"name": "taskmaster",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.dev.conf.js --mode development",
"build": "node ./create-env.js && webpack --config webpack.prod.conf.js",
"build:analyze": "npm run build -- --env.addon=bundleanalyze --env.addon=bundlevisualizer",
"release": "",
"test": "jest",
"lint": "eslint .",
"lint:js": ""
},
"author": "Humoyun Ahmad",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@nivo/axes": "^0.61.0",
"@nivo/bump": "^0.61.1",
"@nivo/calendar": "^0.61.1",
"@nivo/pie": "^0.61.1",
"@svgr/cli": "^5.1.0",
"@svgr/webpack": "^5.1.0",
"antd": "^3.26.7",
"axios": "^0.19.2",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dayjs": "^1.8.19",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"js-cookie": "^2.2.1",
"jwt-decode": "^2.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"polished": "^3.4.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-contextmenu": "^2.13.0",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.19",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.3.0",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"style-loader": "^1.1.3",
"styled-components": "^5.0.0",
"url-loader": "^3.0.0",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}