-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.71 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.71 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
{
"name": "frontend_l4_chat_project",
"version": "0.0.1",
"description": "",
"main": "dist/index.jsx",
"bin": {
"hexlet": "dist/bin/hexlet.js"
},
"engines": {
"node": "9"
},
"scripts": {
"test": "jest",
"build-server": "babel server --out-dir dist --source-maps inline",
"build-app": "npx webpack -p --env production",
"build": "npm run build-app && npm run build-server",
"postinstall": "npm run build",
"start": "babel-node ./server/bin/slack.js",
"heroku-postbuild": "webpack -p"
},
"repository": {
"type": "git",
"url": "git@bitbucket.org:hexlet/frontend_l4_chat_project.git"
},
"author": "Kirill Mokevnin",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/node": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.20",
"@fortawesome/free-solid-svg-icons": "^5.10.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"css-loader": "^2.1.1",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"faker": "^4.1.0",
"i18next": "^17.0.6",
"jquery": "^3.4.1",
"js-cookie": "^2.2.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-generic-session": "^2.0.1",
"koa-logger": "^3.2.0",
"koa-mount": "^4.0.0",
"koa-pug": "^3.0.0-2",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-webpack": "^5.2.3",
"lodash": "^4.17.11",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-country-flag": "^1.0.2",
"react-dom": "^16.8.6",
"react-i18next": "^10.11.4",
"react-redux": "^6.0.1",
"react-redux-i18n": "^1.9.3",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-bootstrap": "^1.3.0",
"redux-form": "^8.2.4",
"redux-thunk": "^2.3.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"nodemon": "^1.19.1",
"redux-devtools-extension": "^2.13.8"
}
}