-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.46 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
{
"name": "sidequest",
"version": "1.0.0",
"type": "module",
"description": "This document provides an overview of how the SideQuest repository is organized and the intended purpose of each directory. The goal is to keep the project modular, easy to navigate, and scalable as we continue to iterate throughout the semester. **Not every file or folder will be populated immediately**—many will be created as features are implemented.",
"main": "eslint.config.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "concurrently \"npm run dev --prefix server\" \"npm run dev --prefix client\"",
"client": "npm run dev --prefix client",
"server": "npm run dev --prefix server",
"rehash-passwords": "npm run rehash-passwords --prefix server",
"assign-project-owners": "npm run assign-project-owners --prefix server",
"seed-team-memberships": "npm run seed-team-memberships --prefix server",
"format": "prettier --write .",
"seed": "node database/seed/seedDatabase.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesjacob2001/SideQuest.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesjacob2001/SideQuest/issues"
},
"homepage": "https://github.com/jamesjacob2001/SideQuest#readme",
"devDependencies": {
"concurrently": "^10.0.3",
"prettier": "^3.9.5"
},
"dependencies": {
"dotenv": "^17.4.2",
"mongodb": "^7.5.0"
}
}