-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 864 Bytes
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": "mp3_starter",
"version": "1.0.0",
"description": "MP3 Starter for CS409 Fall 2025",
"type": "module",
"authors": [
"Arjun Sivaraman <arjun16@illinois.edu>",
"Tianyi Zhong <tzhong8@illinois.edu>",
"James Lee <jwlee11@illinois.edu>",
"Sujay Khandekar <khandek2@illinois.edu>"
],
"scripts": {
"start": "node server.js",
"dev": "nodemon --exec node server.js"
},
"babel": {
"presets": [
"env",
"react"
]
},
"repository": {
"type": "git",
"url": "https://github.com/cs409-fa25/mp3.git"
},
"dependencies": {
"body-parser": "^1.17.2",
"dotenv": "^17.2.3",
"express": "^4.15.3",
"mongodb": "^6.20.0",
"mongoose": "^5.13.23"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"eslint": "^9.37.0",
"globals": "^16.4.0",
"nodemon": "^3.1.10"
}
}