-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
executable file
·70 lines (70 loc) · 2.06 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
{
"name": "react-test-task",
"version": "1.0.0",
"description": "A boilerplate for playing around with react. Developed to be given as a test task for candidates/internship.",
"main": "index.js",
"scripts": {
"test_watch": "mocha --opts mocha.opts --watch app/**/*spec.js",
"start": "node server",
"build": "rimraf dist && webpack --config ./webpack.production.config.js --progress --profile --colors",
"eslint": "eslint ."
},
"keywords": [
"es6",
"react",
"redux"
],
"author": "Oleh Meleshko",
"license": "MIT",
"dependencies": {
"connected-react-router": "^6.8.0",
"file-loader": "^6.1.0",
"moment": "^2.28.0",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^6.3.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.8.0",
"chai": "^4.1.1",
"css-loader": "^0.23.1",
"enzyme": "^2.9.1",
"eslint": "^7.9.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^4.4.1",
"json-loader": "^0.5.4",
"mocha": "^3.5.0",
"mock-socket": "^7.0.0",
"postcss-loader": "^0.9.1",
"proxyquire": "^1.8.0",
"react-addons-test-utils": "^15.0.2",
"redux-devtools": "^3.2.0",
"redux-devtools-chart-monitor": "^1.6.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"redux-mock-store": "^1.2.3",
"rimraf": "^2.5.2",
"sass-loader": "^10.0.2",
"stats-webpack-plugin": "^0.3.1",
"style-loader": "^0.13.1",
"tapable": "^1.1.3",
"url-loader": "^0.5.7",
"webpack": "^4.44.1",
"webpack-dev-server": "^3.11.0"
}
}