This repository was archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
{
"name": "frontend_l4_chat_project",
"version": "0.0.1",
"description": "",
"main": "server/plugin.js",
"type": "module",
"scripts": {
"test": "jest",
"prebuild": "rm -rf dist",
"build": "webpack",
"start": "fastify start server/plugin.js -l info -P -a 0.0.0.0"
},
"jest": {
"transform": {}
},
"repository": {
"type": "git",
"url": "[email protected]:hexlet-components/projects-frontend-l4-server.git"
},
"author": "Kirill Mokevnin",
"license": "ISC",
"homepage": "",
"dependencies": {
"bootstrap": "^5.1.3",
"core-js": "^3.21.1",
"debug": "^4.3.3",
"fastify": "^3.27.2",
"fastify-cli": "^5.7.1",
"fastify-formbody": "^5.2.0",
"fastify-jwt": "^4.1.3",
"fastify-secure-session": "^3.0.0",
"fastify-sensible": "^3.1.2",
"fastify-socket.io": "^3.0.0",
"fastify-static": "^4.5.0",
"http-errors": "^2.0.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"pino-pretty": "^7.5.1",
"point-of-view": "^5.1.0",
"popper.js": "^1.16.1",
"pug": "^3.0.2",
"react": "^17.0.2",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@jest/globals": "^27.5.1",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-functional": "^4.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^7.0.1",
"nodemon": "^2.0.15",
"npm-check-updates": "^16.3.18",
"postcss-loader": "^7.2.4",
"postcss-preset-env": "^7.4.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}