-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "exsellence",
"version": "0.0.1",
"description": "ExpressJS with PostgreSQL example",
"homepage": "https://github.com/CSCE331-Fall2025/project3_group6#readme",
"bugs": {
"url": "https://github.com/CSCE331-Fall2025/project3_group6/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CSCE331-Fall2025/project3_group6.git"
},
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start": "node backend/server.js",
"dev": "nodemon backend/server.js",
"build-front": "vite build ./frontend",
"build-front-dev": "vite build --mode development ./frontend",
"heroku-prebuild": "npm install && npm run docs && cd frontend && npm install && npm run build",
"docs": "jsdoc -c jsdoc.json"
},
"dependencies": {
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.21.2",
"express-session": "^1.18.2",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.8.0",
"react-spinners": "^0.17.0",
"jsdoc": "^4.0.3"
},
"devDependencies": {
"nodemon": "^3.1.10",
"path": "^0.12.7"
}
}