-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 862 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
{
"name": "property-management-app",
"version": "1.0.0",
"description": "Web app for property managers/owners to manage properties and tenants.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run start:dev:backend\" \"npm run start:dev:frontend\"",
"start:dev:frontend": "cd frontend && npm run start",
"start:dev:backend": "cd backend && npm run setup && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wilson2k/Property-Management-App.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Wilson2k/Property-Management-App/issues"
},
"homepage": "https://github.com/Wilson2k/Property-Management-App#readme",
"dependencies": {
"concurrently": "^8.2.0"
}
}