-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 877 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": "casacrest-app",
"version": "1.0.0",
"description": "CasaCrest - Real Estate App",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon api/index.js",
"start": "node api/index.js",
"build": "npm install && npm install --prefix client && npm run build --prefix client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mde3/casa-crest.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mde3/casa-crest/issues"
},
"homepage": "https://github.com/mde3/casa-crest#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.2",
"nodemon": "^3.0.1"
}
}