-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.84 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.84 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
{
"name": "react-task",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm run format && cross-env NODE_ENV=development webpack-dev-server --open",
"build": "cross-env NODE_ENV=production webpack",
"test": "jest --coverage",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"engines": {
"node": ">=8",
"npm": ">=3"
},
"dependencies": {
"axios": "0.21.4",
"core-js": "3.2.1",
"history": "4.10.1",
"prop-types": "15.7.2",
"ramda": "0.26.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.2.2",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"reselect": "4.0.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-decorators": "7.13.5",
"@babel/plugin-proposal-export-namespace-from": "7.12.13",
"@babel/plugin-proposal-function-sent": "7.12.13",
"@babel/plugin-proposal-json-strings": "7.13.8",
"@babel/plugin-proposal-numeric-separator": "7.12.13",
"@babel/plugin-proposal-throw-expressions": "7.12.13",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-react-constant-elements": "7.13.10",
"@babel/plugin-transform-react-inline-elements": "7.12.13",
"@babel/plugin-transform-runtime": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/preset-react": "7.12.13",
"@babel/register": "7.13.8",
"@babel/runtime": "7.13.10",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "8.2.2",
"babel-plugin-transform-react-pure-class-to-function": "1.0.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-preset-react-optimize": "1.0.1",
"browserslist": "4.17.0",
"clean-webpack-plugin": "3.0.0",
"connect-history-api-fallback": "1.6.0",
"cross-env": "6.0.3",
"css-loader": "3.2.0",
"file-loader": "4.2.0",
"html-webpack-plugin": "3.2.0",
"husky": "3.0.8",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"jsdom": "15.1.1",
"koa-connect": "2.0.1",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "4.14.1",
"npm-check-updates": "3.1.24",
"optimize-css-assets-webpack-plugin": "5.0.3",
"prettier": "2.2.1",
"pretty-quick": "1.11.1",
"react-hot-loader": "4.13.0",
"redux-immutable-state-invariant": "2.1.0",
"sass-loader": "8.0.0",
"script-ext-html-webpack-plugin": "2.1.4",
"style-loader": "1.0.0",
"svg-react-loader": "0.4.6",
"terser-webpack-plugin": "4.2.3",
"url-loader": "4.1.1",
"webpack": "4.41.0",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.11.2",
"webpack-merge": "4.2.2"
}
}