-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 986 Bytes
/
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
{
"name": "@hexlet/code",
"version": "1.0.0",
"description": "Fourth Hexlet Project: Chat",
"main": "src/index.js",
"scripts": {
"build": "npm run build --prefix frontend",
"start-dev": "npx start-server -p 5001 && npm start",
"start": "start-server -s ./frontend/build",
"postinstall": "cd frontend && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tsogoeva/frontend-project-lvl4.git"
},
"author": "TsogoevaTS",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tsogoeva/frontend-project-lvl4/issues"
},
"homepage": "https://github.com/Tsogoeva/frontend-project-lvl4#readme",
"dependencies": {
"@hexlet/chat-server": "^1.1.6",
"node": "16.13.1"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-plugin-react": "^7.31.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-functional": "^4.2.2"
}
}