-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.9 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
97
98
99
100
{
"name": "frontend_l4_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]:hexlet-components/projects-frontend-l4-server.git"
},
"author": "Kirill Mokevnin",
"license": "ISC",
"homepage": "",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@reduxjs/toolkit": "^1.3.6",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.0",
"classnames": "^2.2.6",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"faker": "^4.1.0",
"fastify": "^2.14.1",
"fastify-formbody": "^3.2.0",
"fastify-secure-session": "^1.2.0",
"fastify-sensible": "^2.1.1",
"fastify-static": "^2.7.0",
"formik": "^2.1.4",
"jquery": "^3.5.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"normalizr": "^3.6.0",
"point-of-view": "^3.8.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"pug": "^2.0.4",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-scroll": "^1.8.1",
"redux": "^4.0.5",
"redux-bootstrap": "^1.3.0",
"regenerator-runtime": "^0.13.5",
"sass-loader": "^8.0.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"yup": "^0.29.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"jest": "^25.5.4",
"jest-cli": "^25.5.4",
"nodemon": "^2.0.4",
"redux-devtools": "^3.5.0"
}
}