-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 994 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 994 Bytes
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": "varta",
"version": "1.0.0",
"description": "Varta is a real-time chatting web application",
"main": ".eslintrc.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AnikAdhikari7/Varta.git"
},
"keywords": [
"varta"
],
"author": "Anik Adhikari",
"license": "ISC",
"bugs": {
"url": "https://github.com/AnikAdhikari7/Varta/issues"
},
"homepage": "https://github.com/AnikAdhikari7/Varta#readme",
"scripts": {
"build": "npm install --prefix backend && npm install --prefix frontend && npm run build --prefix frontend",
"start": "npm start --prefix backend",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write ."
},
"devDependencies": {
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.4.2"
}
}