-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 KB
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
{
"name": "homies",
"version": "1.0.0",
"description": "Homies: A Roommate Peacekeeping and Management Application",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_OPTIONS=\"--localstorage-file=./jest-storage --experimental-vm-modules\" jest --detectOpenHandles",
"dev": "cross-env NODE_ENV=development nodemon backend/server.js",
"start": "cross-env NODE_ENV=production node backend/server.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KaiserLycan/Homies.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/KaiserLycan/Homies/issues"
},
"homepage": "https://github.com/KaiserLycan/Homies#readme",
"dependencies": {
"@supabase/supabase-js": "^2.95.3",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"cross-env": "^10.1.0",
"dotenv": "^17.2.4",
"expo": "^55.0.5",
"express": "^5.2.1",
"express-rate-limit": "^8.3.0",
"express-validator": "^7.3.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"postgres": "^3.4.8",
"short-unique-id": "^5.3.2"
},
"devDependencies": {
"@types/react": "~19.2.10",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"supertest": "^7.2.2",
"typescript": "~5.9.2"
}
}