-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.46 KB
/
package.json
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": "chat-project",
"version": "0.0.1",
"description": "",
"main": "dist/index.jsx",
"bin": {
"hexlet": "dist/bin/hexlet.js"
},
"engines": {
"node": "10"
},
"scripts": {
"start": "dist/bin/slack.js",
"postinstall": "make build"
},
"repository": {
"type": "git",
"url": "https://github.com/ddrgis/project-lvl4-s441.git"
},
"author": "Nikita Sementcov",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddrgis/project-lvl4-s441/issues"
},
"homepage": "https://react-chat-ddrgis.herokuapp.com/",
"husky": {
"hooks": {
"pre-commit": "make lint && make test",
"pre-push": "make lint && make test"
}
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.5",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"core-js": "^3.6.5",
"debug": "^4.1.0",
"dotenv": "^8.2.0",
"faker": "^4.1.0",
"fastify": "^2.13.1",
"fastify-favicon": "^2.1.0",
"fastify-static": "^2.6.0",
"immutability-helper": "^3.0.2",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"point-of-view": "^3.8.0",
"pug": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"reactstrap": "^8.4.1",
"redux": "^4.0.5",
"redux-form": "^8.3.5",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.5",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.3",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"jest-cli": "^25.3.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}