-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.74 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
94
95
96
{
"name": "zipofar_frontend_lvl4_chat_project",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"bin": {
"slack": "dist/bin/slack.js"
},
"engines": {
"node": ">= 13"
},
"scripts": {
"test": "jest",
"build-server": "babel server --out-dir dist --source-maps inline && cp -r server/views dist/views",
"build-app": "npx webpack -p --env production",
"build": "npm run build-app && npm run build-server",
"start": "dist/bin/slack.js",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:zipofar/frontend-project-lvl4.git"
},
"author": "John Agafonov",
"license": "ISC",
"homepage": "",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@reduxjs/toolkit": "^1.2.4",
"axios": "^0.19.2",
"babel-loader": "^8.0.6",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"faker": "^4.1.0",
"fastify": "^2.12.0",
"fastify-formbody": "^3.1.0",
"fastify-secure-session": "^1.1.1",
"fastify-sensible": "^2.1.1",
"fastify-static": "^2.6.0",
"formik": "^2.1.4",
"i18next": "^19.3.2",
"i18next-browser-languagedetector": "^4.0.2",
"jquery": "^3.4.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"point-of-view": "^3.7.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"pug": "^2.0.4",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^16.12.0",
"react-i18next": "^11.3.3",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-bootstrap": "^1.3.0",
"regenerator-runtime": "^0.13.3",
"sass-loader": "^8.0.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^5.0.2",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"nodemon": "^2.0.2"
}
}